Enum MooreNeighbourhood

    • Nested Class Summary

      • Nested classes/interfaces inherited from interface org.refcodes.graphical.Position

        org.refcodes.graphical.Position.PositionBuilder<B extends org.refcodes.graphical.Position.PositionBuilder<B>>, org.refcodes.graphical.Position.PositionMutator, org.refcodes.graphical.Position.PositionProperty, org.refcodes.graphical.Position.PositionPropertyBuilder
      • Nested classes/interfaces inherited from interface org.refcodes.graphical.PosXAccessor

        org.refcodes.graphical.PosXAccessor.PosXBuilder<B extends org.refcodes.graphical.PosXAccessor.PosXBuilder<B>>, org.refcodes.graphical.PosXAccessor.PosXMutator, org.refcodes.graphical.PosXAccessor.PosXProperty
      • Nested classes/interfaces inherited from interface org.refcodes.graphical.PosYAccessor

        org.refcodes.graphical.PosYAccessor.PosYBuilder<B extends org.refcodes.graphical.PosYAccessor.PosYBuilder<B>>, org.refcodes.graphical.PosYAccessor.PosYMutator, org.refcodes.graphical.PosYAccessor.PosYProperty
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      MooreNeighbourhood clockwiseNext​()
      Returns the next clockwise state relative to the current state.
      MooreNeighbourhood clockwisePrevious​()
      Returns the next anti-clockwise state relative to the current state.
      int getPositionX​()
      Returns the relative X position to position (0, 0).
      int getPositionY​()
      Returns the relative Y position to position (0, 0).
      static MooreNeighbourhood valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static MooreNeighbourhood[] values​()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface org.refcodes.graphical.Position

        equals, toAddTo, toSubFrom
    • Method Detail

      • values

        public static MooreNeighbourhood[] 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 (MooreNeighbourhood c : MooreNeighbourhood.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static MooreNeighbourhood 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 name
        java.lang.NullPointerException - if the argument is null
      • getPositionX

        public int getPositionX​()
        Returns the relative X position to position (0, 0).
        Specified by:
        getPositionX in interface org.refcodes.graphical.PosXAccessor
        Returns:
        The relative position X to the (0,0) coordinate.
      • getPositionY

        public int getPositionY​()
        Returns the relative Y position to position (0, 0).
        Specified by:
        getPositionY in interface org.refcodes.graphical.PosYAccessor
        Returns:
        The relative position Y to the (0,0) coordinate.