public enum BaseGeometryType extends Enum<BaseGeometryType>
| Modifier and Type | Method and Description |
|---|---|
abstract <T,E extends Exception> |
accept(IBaseGeometryTypeVisitor<T,E> visitor) |
static BaseGeometryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BaseGeometryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseGeometryType POINT
public static final BaseGeometryType CURVE
public static final BaseGeometryType POLYGON
public static final BaseGeometryType UNKNOWN
public static BaseGeometryType[] values()
for (BaseGeometryType c : BaseGeometryType.values()) System.out.println(c);
public static BaseGeometryType 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 nullpublic abstract <T,E extends Exception> T accept(IBaseGeometryTypeVisitor<T,E> visitor) throws E extends Exception
E extends ExceptionCopyright © 2007–2018 Andreas W. Bartels. All rights reserved.