Class PluralRanges

    • Constructor Detail

      • PluralRanges

        @Deprecated
        public PluralRanges()
        Deprecated.
        This API is ICU internal only.
        Constructor
    • Method Detail

      • isExplicitlySet

        @Deprecated
        public boolean isExplicitlySet​(PluralRules.StandardPluralCategories count)
        Deprecated.
        This API is ICU internal only.
        Internal method to determines whether the StandardPluralCategories was explicitly used in any add statement.
        Parameters:
        count - plural category to test
        Returns:
        true if set
      • equals

        @Deprecated
        public boolean equals​(Object other)
        Deprecated.
        This API is ICU internal only.
        Compares this instance with the specified object and indicates if they are equal. In order to be equal, o must represent the same object as this instance using a class-specific comparison. The general contract is that this comparison should be reflexive, symmetric, and transitive. Also, no object reference other than null is equal to null.

        The default implementation returns true only if this == o. See Writing a correct equals method if you intend implementing your own equals method.

        The general contract for the equals and Object.hashCode() methods is that if equals returns true for any two objects, then hashCode() must return the same value for these objects. This means that subclasses of Object usually override either both methods or neither of them.

        Overrides:
        equals in class Object
        Parameters:
        other - the object to compare this instance with.
        Returns:
        true if the specified object is equal to this Object; false otherwise.
        See Also:
        Object.hashCode()
      • hashCode

        @Deprecated
        public int hashCode()
        Deprecated.
        This API is ICU internal only.
        Returns an integer hash code for this object. By contract, any two objects for which Object.equals(java.lang.Object) returns true must return the same hash code value. This means that subclasses of Object usually override both methods or neither method.

        Note that hash values must not change over time unless information used in equals comparisons also changes.

        See Writing a correct hashCode method if you intend implementing your own hashCode method.

        Overrides:
        hashCode in class Object
        Returns:
        this object's hash code.
        See Also:
        Object.equals(java.lang.Object)
      • compareTo

        @Deprecated
        public int compareTo​(PluralRanges that)
        Deprecated.
        This API is ICU internal only.
        Compares this object to the specified object to determine their relative order.
        Specified by:
        compareTo in interface Comparable<PluralRanges>
        Parameters:
        that - the object to compare to this instance.
        Returns:
        a negative integer if this instance is less than another; a positive integer if this instance is greater than another; 0 if this instance has the same order as another.
      • isFrozen

        @Deprecated
        public boolean isFrozen()
        Deprecated.
        This API is ICU internal only.
        Determines whether the object has been frozen or not.
        Specified by:
        isFrozen in interface Freezable<PluralRanges>
      • toString

        @Deprecated
        public String toString()
        Deprecated.
        This API is ICU internal only.
        Returns a string containing a concise, human-readable description of this object. Subclasses are encouraged to override this method and provide an implementation that takes into account the object's type and data. The default implementation is equivalent to the following expression:
           getClass().getName() + '@' + Integer.toHexString(hashCode())

        See Writing a useful toString method if you intend implementing your own toString method.

        Overrides:
        toString in class Object
        Returns:
        a printable representation of this object.