Package oracle.pgx.api.mllib
Enum SupervisedGraphWiseModel.SupervisedGraphWiseInferenceType
- java.lang.Object
-
- java.lang.Enum<SupervisedGraphWiseModel.SupervisedGraphWiseInferenceType>
-
- oracle.pgx.api.mllib.SupervisedGraphWiseModel.SupervisedGraphWiseInferenceType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SupervisedGraphWiseModel.SupervisedGraphWiseInferenceType>
- Enclosing class:
- SupervisedGraphWiseModel
public static enum SupervisedGraphWiseModel.SupervisedGraphWiseInferenceType extends java.lang.Enum<SupervisedGraphWiseModel.SupervisedGraphWiseInferenceType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EVALUATE
EVALUATE_LABELS
INFER
INFER_EMBEDDINGS
INFER_LABELS
INFER_LOGITS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SupervisedGraphWiseModel.SupervisedGraphWiseInferenceType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SupervisedGraphWiseModel.SupervisedGraphWiseInferenceType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INFER_EMBEDDINGS
public static final SupervisedGraphWiseModel.SupervisedGraphWiseInferenceType INFER_EMBEDDINGS
-
INFER_LABELS
public static final SupervisedGraphWiseModel.SupervisedGraphWiseInferenceType INFER_LABELS
-
EVALUATE_LABELS
public static final SupervisedGraphWiseModel.SupervisedGraphWiseInferenceType EVALUATE_LABELS
-
INFER_LOGITS
public static final SupervisedGraphWiseModel.SupervisedGraphWiseInferenceType INFER_LOGITS
-
INFER
public static final SupervisedGraphWiseModel.SupervisedGraphWiseInferenceType INFER
-
EVALUATE
public static final SupervisedGraphWiseModel.SupervisedGraphWiseInferenceType EVALUATE
-
-
Method Detail
-
values
public static SupervisedGraphWiseModel.SupervisedGraphWiseInferenceType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SupervisedGraphWiseModel.SupervisedGraphWiseInferenceType c : SupervisedGraphWiseModel.SupervisedGraphWiseInferenceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SupervisedGraphWiseModel.SupervisedGraphWiseInferenceType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-