Class OdMethodFacade
- java.lang.Object
-
- org.orekit.files.ccsds.definitions.OdMethodFacade
-
public class OdMethodFacade extends Object
Facade in front of several orbit determination methods in CCSDS messages.- Since:
- 11.0
- Author:
- Luc Maisonobe
-
-
Constructor Summary
Constructors Constructor Description OdMethodFacade(String name, OdMethodType type, String tool)
Simple constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
Get the name of the method.String
getTool()
Get the tool used for OD.OdMethodType
getType()
Get the method type.static OdMethodFacade
parse(String s)
Parse a string from OCM.
-
-
-
Constructor Detail
-
OdMethodFacade
public OdMethodFacade(String name, OdMethodType type, String tool)
Simple constructor.- Parameters:
name
- name of the methodtype
- method type (may be null)tool
- tool used for OD (may be null)
-
-
Method Detail
-
getName
public String getName()
Get the name of the method.- Returns:
- name of the method
-
getType
public OdMethodType getType()
Get the method type.- Returns:
- method type
-
getTool
public String getTool()
Get the tool used for OD.- Returns:
- tool used for OD
-
parse
public static OdMethodFacade parse(String s)
Parse a string from OCM.- Parameters:
s
- string to parse- Returns:
- OD method facade
-
-