public enum Record extends Enum<Record> implements NonSerializable
| Enum Constant and Description |
|---|
BLOCKS |
CAT |
CHIRP |
ELEVEN |
FAR |
MALL |
MELLOHI |
PIGSTEP |
STAL |
STRAD |
THIRTEEN |
WAIT |
WARD |
| Modifier and Type | Method and Description |
|---|---|
static Record |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Record[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Record THIRTEEN
public static final Record CAT
public static final Record BLOCKS
public static final Record CHIRP
public static final Record FAR
public static final Record MALL
public static final Record MELLOHI
public static final Record STAL
public static final Record STRAD
public static final Record WARD
public static final Record ELEVEN
public static final Record WAIT
public static final Record PIGSTEP
public static Record[] values()
for (Record c : Record.values()) System.out.println(c);
public static Record 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 © 2021. All rights reserved.