Enum SubdivEnum

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<SubdivEnum>

    public enum SubdivEnum
    extends java.lang.Enum<SubdivEnum>
    • Enum Constant Detail

      • PTLOC_ERROR

        public static final SubdivEnum PTLOC_ERROR
      • PTLOC_OUTSIDE_RECT

        public static final SubdivEnum PTLOC_OUTSIDE_RECT
      • PTLOC_INSIDE

        public static final SubdivEnum PTLOC_INSIDE
      • PTLOC_VERTEX

        public static final SubdivEnum PTLOC_VERTEX
      • PTLOC_ON_EDGE

        public static final SubdivEnum PTLOC_ON_EDGE
      • NEXT_AROUND_ORG

        public static final SubdivEnum NEXT_AROUND_ORG
      • NEXT_AROUND_DST

        public static final SubdivEnum NEXT_AROUND_DST
      • PREV_AROUND_ORG

        public static final SubdivEnum PREV_AROUND_ORG
      • PREV_AROUND_DST

        public static final SubdivEnum PREV_AROUND_DST
      • NEXT_AROUND_LEFT

        public static final SubdivEnum NEXT_AROUND_LEFT
      • NEXT_AROUND_RIGHT

        public static final SubdivEnum NEXT_AROUND_RIGHT
      • PREV_AROUND_LEFT

        public static final SubdivEnum PREV_AROUND_LEFT
      • PREV_AROUND_RIGHT

        public static final SubdivEnum PREV_AROUND_RIGHT
    • Field Detail

      • value

        public final int value
    • Method Detail

      • values

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

        public static SubdivEnum 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