public enum CheckType extends Enum<CheckType>
| Enum Constant and Description |
|---|
CLEAR
Check clear
|
CLOSE
Check close
|
DELETE
Check delete
|
FIND
Check find
|
INVOKE
Check invoke
|
ROW_SELECT
Check row select
|
SAVE
Check save.
|
| Modifier and Type | Method and Description |
|---|---|
static CheckType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CheckType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckType CLEAR
public static final CheckType CLOSE
public static final CheckType DELETE
public static final CheckType FIND
public static final CheckType INVOKE
public static final CheckType ROW_SELECT
public static final CheckType SAVE
public static CheckType[] values()
for (CheckType c : CheckType.values()) System.out.println(c);
public static CheckType 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 © 2006–2017 Esito AS. All rights reserved.