Enum SquareNeighbourhood
- java.lang.Object
-
- java.lang.Enum<SquareNeighbourhood>
-
- org.apache.commons.math4.neuralnet.SquareNeighbourhood
-
- All Implemented Interfaces:
Serializable
,Comparable<SquareNeighbourhood>
public enum SquareNeighbourhood extends Enum<SquareNeighbourhood>
Defines neighbourhood types.- Since:
- 3.3
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MOORE
Moore neighbourhood: in two dimensions, each (internal) neuron has eight neighbours.VON_NEUMANN
Von Neumann neighbourhood: in two dimensions, each (internal) neuron has four neighbours.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SquareNeighbourhood
valueOf(String name)
Returns the enum constant of this type with the specified name.static SquareNeighbourhood[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VON_NEUMANN
public static final SquareNeighbourhood VON_NEUMANN
Von Neumann neighbourhood: in two dimensions, each (internal) neuron has four neighbours.
-
MOORE
public static final SquareNeighbourhood MOORE
Moore neighbourhood: in two dimensions, each (internal) neuron has eight neighbours.
-
-
Method Detail
-
values
public static SquareNeighbourhood[] 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 (SquareNeighbourhood c : SquareNeighbourhood.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SquareNeighbourhood 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
-
-