public enum CatOutPutFormatType extends java.lang.Enum<CatOutPutFormatType>
Enum Constant and Description |
---|
KWEEmail |
KWEHtml |
KWEPrint |
KWEText |
Modifier and Type | Method and Description |
---|---|
static CatOutPutFormatType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CatOutPutFormatType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CatOutPutFormatType KWEHtml
public static final CatOutPutFormatType KWEText
public static final CatOutPutFormatType KWEPrint
public static final CatOutPutFormatType KWEEmail
public static CatOutPutFormatType[] values()
for (CatOutPutFormatType c : CatOutPutFormatType.values()) System.out.println(c);
public static CatOutPutFormatType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null