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 OperationMethodgetMethod()Get the methodStringgetName()Get the nameOperationTypegetOperationType()Get the operation typeStringgetVersion()Get the operation versionbooleanhasVersion()Has an operation versionvoidsetMethod(OperationMethod method)Set the methodvoidsetName(String name)Set the namevoidsetVersion(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
-
-