public enum OnOpenBehavior extends Enum<OnOpenBehavior>
Enum Constant and Description |
---|
DISPLAY_ALL_RECORDS
Record List: Display a list of all records
|
DISPLAY_FIRST_RECORD
First Record: Display the first record in the list
|
Modifier and Type | Method and Description |
---|---|
static OnOpenBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OnOpenBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OnOpenBehavior DISPLAY_ALL_RECORDS
public static final OnOpenBehavior DISPLAY_FIRST_RECORD
public static OnOpenBehavior[] values()
for (OnOpenBehavior c : OnOpenBehavior.values()) System.out.println(c);
public static OnOpenBehavior 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 © 2017. All rights reserved.