public static enum Pooling2D.Divisor extends Enum<Pooling2D.Divisor>
| Enum Constant and Description |
|---|
EXCLUDE_PADDING |
INCLUDE_PADDING |
| Modifier and Type | Method and Description |
|---|---|
static Pooling2D.Divisor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Pooling2D.Divisor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Pooling2D.Divisor EXCLUDE_PADDING
public static final Pooling2D.Divisor INCLUDE_PADDING
public static Pooling2D.Divisor[] values()
for (Pooling2D.Divisor c : Pooling2D.Divisor.values()) System.out.println(c);
public static Pooling2D.Divisor valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.