public enum AnnotationGeometricalObjectType extends Enum<AnnotationGeometricalObjectType>
Enum Constant and Description |
---|
CIRCLE
Circle
|
LINE
Line
|
SQUARE
Square
|
Modifier and Type | Method and Description |
---|---|
static AnnotationGeometricalObjectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnnotationGeometricalObjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnnotationGeometricalObjectType CIRCLE
public static final AnnotationGeometricalObjectType SQUARE
public static final AnnotationGeometricalObjectType LINE
public static AnnotationGeometricalObjectType[] values()
for (AnnotationGeometricalObjectType c : AnnotationGeometricalObjectType.values()) System.out.println(c);
public static AnnotationGeometricalObjectType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019. All rights reserved.