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