Package boofcv.gui.tracker
Enum TrackerObjectQuadPanel.Mode
- java.lang.Object
-
- java.lang.Enum<TrackerObjectQuadPanel.Mode>
-
- boofcv.gui.tracker.TrackerObjectQuadPanel.Mode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TrackerObjectQuadPanel.Mode>
- Enclosing class:
- TrackerObjectQuadPanel
public static enum TrackerObjectQuadPanel.Mode extends java.lang.Enum<TrackerObjectQuadPanel.Mode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DRAGGING_RECTIDLEPLACING_POINTSTRACKING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TrackerObjectQuadPanel.ModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TrackerObjectQuadPanel.Mode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IDLE
public static final TrackerObjectQuadPanel.Mode IDLE
-
DRAGGING_RECT
public static final TrackerObjectQuadPanel.Mode DRAGGING_RECT
-
PLACING_POINTS
public static final TrackerObjectQuadPanel.Mode PLACING_POINTS
-
TRACKING
public static final TrackerObjectQuadPanel.Mode TRACKING
-
-
Method Detail
-
values
public static TrackerObjectQuadPanel.Mode[] 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 (TrackerObjectQuadPanel.Mode c : TrackerObjectQuadPanel.Mode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TrackerObjectQuadPanel.Mode 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
-
-