public enum SpatialReferenceSystemType extends Enum<SpatialReferenceSystemType> implements IEnum
| Enum Constant and Description |
|---|
Geographic
地理参考系
|
Projected
投影参考系
|
Unknown
未定义
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue()
获取枚举值
|
static SpatialReferenceSystemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpatialReferenceSystemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetByValue, getDescpublic static final SpatialReferenceSystemType Geographic
public static final SpatialReferenceSystemType Projected
public static final SpatialReferenceSystemType Unknown
public static SpatialReferenceSystemType[] values()
for (SpatialReferenceSystemType c : SpatialReferenceSystemType.values()) System.out.println(c);
public static SpatialReferenceSystemType 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 © 2025. All rights reserved.