Enum CroppingState.PolygonType
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum CroppingState.PolygonType extends Enum<CroppingState.PolygonType>
Defines possible sources of getting given polygon.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DETECTIONPolygon was detected by ContourDetector.
RESETPolygon was reset to default value.
FREE_FORMUser defined polygon by hand.
-
Method Summary
Modifier and Type Method Description final CroppingState.PolygonTypevalueOf(String value)Returns the enum constant of this type with the specified name. final Array<CroppingState.PolygonType>values()Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final CroppingState.PolygonType valueOf(String value)
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.)
-
values
final Array<CroppingState.PolygonType> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
-
-
-