public enum Maneuvrable extends Enum<Maneuvrable>
Enum Constant and Description |
---|
N_A
Don't know or not applicable.
|
NO
Non Maneuvrable.
|
YES
Maneuvrable.
|
Modifier and Type | Method and Description |
---|---|
static Maneuvrable |
getEnum(String keyValue) |
String |
getValue() |
String |
toString() |
static Maneuvrable |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Maneuvrable[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Maneuvrable YES
public static final Maneuvrable NO
public static final Maneuvrable N_A
public static Maneuvrable[] values()
for (Maneuvrable c : Maneuvrable.values()) System.out.println(c);
public static Maneuvrable 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 getValue()
public String toString()
toString
in class Enum<Maneuvrable>
public static Maneuvrable getEnum(String keyValue)
Copyright © 2002-2023 CS GROUP. All rights reserved.