public enum QuoteInstruction extends Enum<QuoteInstruction>
Enum Constant and Description |
---|
DO_NOT_QUOTE
Do not re-quote.
|
NO_VALUE
Identifies no value.
|
QUOTE
(Re-)Quote.
|
Modifier and Type | Method and Description |
---|---|
static QuoteInstruction |
forValue(byte value) |
byte |
getValue() |
static QuoteInstruction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QuoteInstruction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuoteInstruction NO_VALUE
public static final QuoteInstruction DO_NOT_QUOTE
public static final QuoteInstruction QUOTE
public static QuoteInstruction[] values()
for (QuoteInstruction c : QuoteInstruction.values()) System.out.println(c);
public static QuoteInstruction 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 byte getValue()
public static QuoteInstruction forValue(byte value)
Copyright © 2012–2024 Onix Solutions. All rights reserved.