Enum Subsampling3DLayer.PoolingType
- java.lang.Object
-
- java.lang.Enum<Subsampling3DLayer.PoolingType>
-
- org.deeplearning4j.nn.conf.layers.Subsampling3DLayer.PoolingType
-
- All Implemented Interfaces:
Serializable,Comparable<Subsampling3DLayer.PoolingType>
- Enclosing class:
- Subsampling3DLayer
public static enum Subsampling3DLayer.PoolingType extends Enum<Subsampling3DLayer.PoolingType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description PoolingTypetoPoolingType()static Subsampling3DLayer.PoolingTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Subsampling3DLayer.PoolingType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MAX
public static final Subsampling3DLayer.PoolingType MAX
-
AVG
public static final Subsampling3DLayer.PoolingType AVG
-
-
Method Detail
-
values
public static Subsampling3DLayer.PoolingType[] 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 (Subsampling3DLayer.PoolingType c : Subsampling3DLayer.PoolingType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Subsampling3DLayer.PoolingType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toPoolingType
public PoolingType toPoolingType()
-
-