public static enum Cut.Result extends Enum<Cut.Result>
Modifier and Type | Method and Description |
---|---|
static Cut.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Cut.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Cut.Result PASS
public static final Cut.Result FAIL
public static final Cut.Result IGNORE
public static Cut.Result[] values()
for (Cut.Result c : Cut.Result.values()) System.out.println(c);
public static Cut.Result 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 © 1996-2014 FreeHEP. All Rights Reserved.