Enum Parser

    • Enum Constant Detail

      • NEUTRAL

        public static final Parser NEUTRAL
      • FLAG

        public static final Parser FLAG
      • VALUE

        public static final Parser VALUE
    • Method Detail

      • values

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

        public static Parser 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
      • camelCaseToHyphenCase

        public static String camelCaseToHyphenCase​(String camelCase)
        Convert a camel case string to hyphen case.
        Parameters:
        camelCase - A camel case string
        Returns:
        hyphen case string
      • hyphenCaseToCamelCase

        public static String hyphenCaseToCamelCase​(String hyphenCase)
        Convert a hyphen case string to camel case.
        Parameters:
        hyphenCase - A hyphen case string
        Returns:
        camel case string