Enum ColumnNameStyle

java.lang.Object
java.lang.Enum<ColumnNameStyle>
me.landmesser.simplecsv.ColumnNameStyle
All Implemented Interfaces:
Serializable, Comparable<ColumnNameStyle>, java.lang.constant.Constable

public enum ColumnNameStyle
extends Enum<ColumnNameStyle>
Determines the default column name style.
See Also:
CSVDefaultColumnName
  • Enum Constant Details

    • LIKE_FIELD

      public static final ColumnNameStyle LIKE_FIELD
      The column name is exactly the same as the field name
    • CAPITALIZED

      public static final ColumnNameStyle CAPITALIZED
      The column name is the same as the field name, except the first character, which is upper case
    • UPPERCASE

      public static final ColumnNameStyle UPPERCASE
      The column name is the field name in upper case letters
    • LOWERCASE

      public static final ColumnNameStyle LOWERCASE
      The column name is the field name in lower case letters
  • Method Details

    • values

      public static ColumnNameStyle[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ColumnNameStyle 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