public static enum Ascii.Parity extends Enum<Ascii.Parity>
| Enum Constant and Description |
|---|
EVEN
Even parity
|
MARK
Mark parity
|
NONE
No parity
|
ODD
Odd parity
|
SPACE
Space parity
|
| Modifier and Type | Method and Description |
|---|---|
static Ascii.Parity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Ascii.Parity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Ascii.Parity NONE
public static final Ascii.Parity ODD
public static final Ascii.Parity EVEN
public static final Ascii.Parity MARK
public static final Ascii.Parity SPACE
public static Ascii.Parity[] values()
for (Ascii.Parity c : Ascii.Parity.values()) System.out.println(c);
public static Ascii.Parity 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 © 2020 LSST. All rights reserved.