Package mil.nga.crs.operation
Interface CommonOperation
-
- All Superinterfaces:
Identifiable
- All Known Implementing Classes:
AbridgedCoordinateTransformation
,CoordinateOperation
,DerivingConversion
,MapProjection
,PointMotionOperation
,SimpleOperation
public interface CommonOperation extends Identifiable
Common Operation interface- Author:
- osbornb
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OperationMethod
getMethod()
Get the methodString
getName()
Get the nameOperationType
getOperationType()
Get the operation typeString
getVersion()
Get the operation versionboolean
hasVersion()
Has an operation versionvoid
setMethod(OperationMethod method)
Set the methodvoid
setName(String name)
Set the namevoid
setVersion(String version)
Set the operation version-
Methods inherited from interface mil.nga.crs.common.Identifiable
addIdentifier, addIdentifiers, getIdentifier, getIdentifiers, hasIdentifiers, numIdentifiers, setIdentifiers
-
-
-
-
Method Detail
-
getOperationType
OperationType getOperationType()
Get the operation type- Returns:
- operation type
-
getName
String getName()
Get the name- Returns:
- name
-
setName
void setName(String name)
Set the name- Parameters:
name
- name
-
getVersion
String getVersion()
Get the operation version- Returns:
- operation version
-
hasVersion
boolean hasVersion()
Has an operation version- Returns:
- true if has operation version
-
setVersion
void setVersion(String version)
Set the operation version- Parameters:
version
- operation version
-
getMethod
OperationMethod getMethod()
Get the method- Returns:
- method
-
setMethod
void setMethod(OperationMethod method)
Set the method- Parameters:
method
- method
-
-