public static enum TrainTest.TreeType extends Enum<TrainTest.TreeType>
Enum Constant and Description |
---|
CART_INDEPENDENT |
CART_JOINT |
Modifier and Type | Method and Description |
---|---|
static TrainTest.TreeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TrainTest.TreeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrainTest.TreeType CART_INDEPENDENT
public static final TrainTest.TreeType CART_JOINT
public static TrainTest.TreeType[] values()
for (TrainTest.TreeType c : TrainTest.TreeType.values()) System.out.println(c);
public static TrainTest.TreeType 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 © 2015–2021 Oracle and/or its affiliates. All rights reserved.