public enum ConfigElementType extends Enum<ConfigElementType>
| Enum Constant and Description |
|---|
BASE64_BINARY
Binary information for PrinterSetup
|
BOOLEAN
A boolean
|
INT
An int
|
LONG
A long int, e.g. for colors
|
SHORT
A short int
|
STRING
A string
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ConfigElementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigElementType BOOLEAN
public static final ConfigElementType LONG
public static final ConfigElementType INT
public static final ConfigElementType SHORT
public static final ConfigElementType STRING
public static final ConfigElementType BASE64_BINARY
public static ConfigElementType[] values()
for (ConfigElementType c : ConfigElementType.values()) System.out.println(c);
public static ConfigElementType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<ConfigElementType>Copyright © 2016–2021. All rights reserved.