public enum ClearingIntention extends Enum<ClearingIntention>
Enum Constant and Description |
---|
DoNotIntendToClear
Do not intend to clear.
|
IntendToClear
Intend to clear.
|
None
Default value.
|
Modifier and Type | Method and Description |
---|---|
static ClearingIntention |
forValue(int value)
Returns enum value for the int representation
|
int |
getValue()
Gets current value.
|
static ClearingIntention |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClearingIntention[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClearingIntention None
public static final ClearingIntention DoNotIntendToClear
public static final ClearingIntention IntendToClear
public static ClearingIntention[] values()
for (ClearingIntention c : ClearingIntention.values()) System.out.println(c);
public static ClearingIntention 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 int getValue()
public static ClearingIntention forValue(int value)
value
- valueCopyright © 2014–2025 Onix Solutions. All rights reserved.