Enum Aggregator.AggregatorType
- java.lang.Object
-
- java.lang.Enum<Aggregator.AggregatorType>
-
- org.neo4j.gds.embeddings.graphsage.Aggregator.AggregatorType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Aggregator.AggregatorType>
- Enclosing interface:
- Aggregator
public static enum Aggregator.AggregatorType extends java.lang.Enum<Aggregator.AggregatorType>
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract org.neo4j.gds.core.utils.mem.MemoryRangememoryEstimation(long minNodeCount, long maxNodeCount, long minPreviousNodeCount, long maxPreviousNodeCount, int inputDimension, int embeddingDimension)static Aggregator.AggregatorTypeof(java.lang.String aggregatorType)static Aggregator.AggregatorTypeparse(java.lang.Object input)static java.lang.StringtoString(Aggregator.AggregatorType af)static Aggregator.AggregatorTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Aggregator.AggregatorType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MEAN
public static final Aggregator.AggregatorType MEAN
-
POOL
public static final Aggregator.AggregatorType POOL
-
-
Method Detail
-
values
public static Aggregator.AggregatorType[] 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 (Aggregator.AggregatorType c : Aggregator.AggregatorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Aggregator.AggregatorType 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
-
of
public static Aggregator.AggregatorType of(java.lang.String aggregatorType)
-
parse
public static Aggregator.AggregatorType parse(java.lang.Object input)
-
toString
public static java.lang.String toString(Aggregator.AggregatorType af)
-
memoryEstimation
public abstract org.neo4j.gds.core.utils.mem.MemoryRange memoryEstimation(long minNodeCount, long maxNodeCount, long minPreviousNodeCount, long maxPreviousNodeCount, int inputDimension, int embeddingDimension)
-
-