Package oracle.pgx.config.mllib
Enum GraphWiseBaseConvLayerConfig.ConvLayerType
- java.lang.Object
-
- java.lang.Enum<GraphWiseBaseConvLayerConfig.ConvLayerType>
-
- oracle.pgx.config.mllib.GraphWiseBaseConvLayerConfig.ConvLayerType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<GraphWiseBaseConvLayerConfig.ConvLayerType>
- Enclosing class:
- GraphWiseBaseConvLayerConfig
public static enum GraphWiseBaseConvLayerConfig.ConvLayerType extends java.lang.Enum<GraphWiseBaseConvLayerConfig.ConvLayerType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GraphWiseBaseConvLayerConfig.ConvLayerTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static GraphWiseBaseConvLayerConfig.ConvLayerType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONV
public static final GraphWiseBaseConvLayerConfig.ConvLayerType CONV
-
GAT_CONV
public static final GraphWiseBaseConvLayerConfig.ConvLayerType GAT_CONV
-
-
Method Detail
-
values
public static GraphWiseBaseConvLayerConfig.ConvLayerType[] 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 (GraphWiseBaseConvLayerConfig.ConvLayerType c : GraphWiseBaseConvLayerConfig.ConvLayerType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GraphWiseBaseConvLayerConfig.ConvLayerType 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
-
-