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