public static enum TrainTest.SLMType extends Enum<TrainTest.SLMType>
Enum Constant and Description |
---|
ELASTICNET |
LARS |
LARSLASSO |
SFS |
SFSN |
Modifier and Type | Method and Description |
---|---|
static TrainTest.SLMType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TrainTest.SLMType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrainTest.SLMType SFS
public static final TrainTest.SLMType SFSN
public static final TrainTest.SLMType LARS
public static final TrainTest.SLMType LARSLASSO
public static final TrainTest.SLMType ELASTICNET
public static TrainTest.SLMType[] values()
for (TrainTest.SLMType c : TrainTest.SLMType.values()) System.out.println(c);
public static TrainTest.SLMType 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.