Enum ConverterType

    • Method Detail

      • values

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

        public static ConverterType 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
      • withName

        public static ConverterType withName​(String name)
        Find the ConverterType with the given name, using a case-insensitive match.
        Parameters:
        name - the name of the converter type; may be null
        Returns:
        the matching converter type, or null if the supplied name is null or does not match the name of the known types
      • getName

        public String getName()