public enum EParity extends Enum<EParity>
| Modifier and Type | Method and Description |
|---|---|
static EParity |
fromString(String parity) |
static EParity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EParity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EParity NO
public static final EParity ODD
public static final EParity EVEN
public static EParity[] values()
for (EParity c : EParity.values()) System.out.println(c);
public static EParity 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 nullCopyright © 2011–2017 Taimos GmbH. All rights reserved.