Enum SubdivEnum
- java.lang.Object
-
- java.lang.Enum<SubdivEnum>
-
- edu.wpi.grip.generated.opencv_imgproc.enumeration.SubdivEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SubdivEnum>
public enum SubdivEnum extends java.lang.Enum<SubdivEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NEXT_AROUND_DST
NEXT_AROUND_LEFT
NEXT_AROUND_ORG
NEXT_AROUND_RIGHT
PREV_AROUND_DST
PREV_AROUND_LEFT
PREV_AROUND_ORG
PREV_AROUND_RIGHT
PTLOC_ERROR
PTLOC_INSIDE
PTLOC_ON_EDGE
PTLOC_OUTSIDE_RECT
PTLOC_VERTEX
-
Field Summary
Fields Modifier and Type Field Description int
value
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SubdivEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SubdivEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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
-
-
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 namejava.lang.NullPointerException
- if the argument is null
-
-