Enum MatchingRuleEnum

    • Enum Constant Detail

      • ORDERING

        public static final MatchingRuleEnum ORDERING
        value for ordering usage
      • EQUALITY

        public static final MatchingRuleEnum EQUALITY
        value for equality usage
      • SUBSTRING

        public static final MatchingRuleEnum SUBSTRING
        value for substring usage
    • Field Detail

      • value

        private int value
        Stores the integer value of each element of the enumeration
    • Constructor Detail

      • MatchingRuleEnum

        private MatchingRuleEnum​(int value)
        Private constructor so no other instances can be created other than the public static constants in this class.
        Parameters:
        value - the integer value of the enumeration.
    • Method Detail

      • values

        public static MatchingRuleEnum[] 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 (MatchingRuleEnum c : MatchingRuleEnum.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static MatchingRuleEnum 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
      • getValue

        public int getValue()
        Returns:
        The value associated with the current element.
      • getUsage

        public static MatchingRuleEnum getUsage​(String matchingRule)
        Gets the enumeration type for the usage string regardless of case.
        Parameters:
        matchingRule - the usage string
        Returns:
        the matchingRule enumeration type