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