Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for IntItem (0.05 seconds)

  1. compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

         */
        private static class IntItem implements Item {
            private final int value;
    
            public static final IntItem ZERO = new IntItem();
    
            private IntItem() {
                this.value = 0;
            }
    
            IntItem(String str) {
                this.value = Integer.parseInt(str);
            }
    
            @Override
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jul 23 17:27:08 GMT 2025
    - 26.4K bytes
    - Click Count (0)
Back to Top