Enum DefaultStringLookup

    • Field Detail

      • key

        private final java.lang.String key
        The prefix under which the associated lookup object is registered.
      • lookup

        private final StringLookup lookup
        The associated lookup instance.
    • Constructor Detail

      • DefaultStringLookup

        private DefaultStringLookup​(java.lang.String prefix,
                                    StringLookup lookup)
        Creates a new instance of DefaultStringLookup and sets the key and the associated lookup instance.
        Parameters:
        prefix - the prefix
        lookup - the StringLookup instance
    • Method Detail

      • values

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

        public static DefaultStringLookup valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getKey

        public java.lang.String getKey()
        Returns the standard prefix for the lookup object of this kind.
        Returns:
        the prefix