Enum PrinterColumnFormat
- java.lang.Object
-
- java.lang.Enum<PrinterColumnFormat>
-
- io.fabric8.crd.generator.annotation.PrinterColumnFormat
-
- All Implemented Interfaces:
Serializable,Comparable<PrinterColumnFormat>
public enum PrinterColumnFormat extends Enum<PrinterColumnFormat>
The format of a printer column.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static PrinterColumnFormatvalueOf(String name)Returns the enum constant of this type with the specified name.static PrinterColumnFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final PrinterColumnFormat NONE
-
INT32
public static final PrinterColumnFormat INT32
-
INT64
public static final PrinterColumnFormat INT64
-
FLOAT
public static final PrinterColumnFormat FLOAT
-
DOUBLE
public static final PrinterColumnFormat DOUBLE
-
BYTE
public static final PrinterColumnFormat BYTE
-
DATE
public static final PrinterColumnFormat DATE
-
DATE_TIME
public static final PrinterColumnFormat DATE_TIME
-
PASSWORD
public static final PrinterColumnFormat PASSWORD
-
-
Field Detail
-
value
public final String value
-
-
Method Detail
-
values
public static PrinterColumnFormat[] 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 (PrinterColumnFormat c : PrinterColumnFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PrinterColumnFormat 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 nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
-