Enum TextFragment.CompareMode

    • Enum Constant Detail

      • IGNORE_CODE

        public static final TextFragment.CompareMode IGNORE_CODE
        Ignore difference in codes. Markers are still considered.
      • CODE_DATA_ONLY

        public static final TextFragment.CompareMode CODE_DATA_ONLY
        Compare only the data member of the codes. Two codes that have the same data but different ids, for example, are considered equal.
    • Method Detail

      • values

        public static TextFragment.CompareMode[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (TextFragment.CompareMode c : TextFragment.CompareMode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TextFragment.CompareMode valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null