Package oracle.pgx.config.mllib
Enum GraphWiseEmbeddingConfig.EmbeddingType
- java.lang.Object
-
- java.lang.Enum<GraphWiseEmbeddingConfig.EmbeddingType>
-
- oracle.pgx.config.mllib.GraphWiseEmbeddingConfig.EmbeddingType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<GraphWiseEmbeddingConfig.EmbeddingType>
- Enclosing interface:
- GraphWiseEmbeddingConfig
public static enum GraphWiseEmbeddingConfig.EmbeddingType extends java.lang.Enum<GraphWiseEmbeddingConfig.EmbeddingType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DGIDGI embedding type, implemented byGraphWiseDgiLayerConfigDOMINANTDGI embedding type, implemented byGraphWiseDominantLayerConfig
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GraphWiseEmbeddingConfig.EmbeddingTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static GraphWiseEmbeddingConfig.EmbeddingType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DGI
public static final GraphWiseEmbeddingConfig.EmbeddingType DGI
DGI embedding type, implemented byGraphWiseDgiLayerConfig
-
DOMINANT
public static final GraphWiseEmbeddingConfig.EmbeddingType DOMINANT
DGI embedding type, implemented byGraphWiseDominantLayerConfig
-
-
Method Detail
-
values
public static GraphWiseEmbeddingConfig.EmbeddingType[] 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 (GraphWiseEmbeddingConfig.EmbeddingType c : GraphWiseEmbeddingConfig.EmbeddingType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GraphWiseEmbeddingConfig.EmbeddingType 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
-
-