Enum DirectEpsgFactory.OperationOrder
- Object
-
- Enum<DirectEpsgFactory.OperationOrder>
-
- OperationOrder
-
- All Implemented Interfaces:
Serializable
,Comparable<DirectEpsgFactory.OperationOrder>
- Enclosing class:
- DirectEpsgFactory
public static enum DirectEpsgFactory.OperationOrder extends Enum<DirectEpsgFactory.OperationOrder>
Allows to switch theCoordinateOperation
order from the default accuracy first (GeoTools default) to area first (Proj default).
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AccuracyFirst
AreaFirst
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getOrder()
static DirectEpsgFactory.OperationOrder
valueOf(String name)
Returns the enum constant of this type with the specified name.static DirectEpsgFactory.OperationOrder[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AccuracyFirst
public static final DirectEpsgFactory.OperationOrder AccuracyFirst
-
AreaFirst
public static final DirectEpsgFactory.OperationOrder AreaFirst
-
-
Method Detail
-
values
public static DirectEpsgFactory.OperationOrder[] 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 (DirectEpsgFactory.OperationOrder c : DirectEpsgFactory.OperationOrder.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DirectEpsgFactory.OperationOrder valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getOrder
public String getOrder()
-
-