public enum REASONCODE_ALGORITHM extends Enum<REASONCODE_ALGORITHM>
| Enum Constant and Description |
|---|
POINTS_ABOVE |
POINTS_BELOW |
| Modifier and Type | Method and Description |
|---|---|
static REASONCODE_ALGORITHM |
byName(String name) |
String |
getName() |
static REASONCODE_ALGORITHM |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static REASONCODE_ALGORITHM[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final REASONCODE_ALGORITHM POINTS_ABOVE
public static final REASONCODE_ALGORITHM POINTS_BELOW
public static REASONCODE_ALGORITHM[] values()
for (REASONCODE_ALGORITHM c : REASONCODE_ALGORITHM.values()) System.out.println(c);
public static REASONCODE_ALGORITHM 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 nullpublic static REASONCODE_ALGORITHM byName(String name)
public String getName()
Copyright © 2001–2021 JBoss by Red Hat. All rights reserved.