Package org.orekit.files.iirv.terms
Class SupportIdCodeTerm
- java.lang.Object
-
- org.orekit.files.iirv.terms.base.IIRVVectorTerm<Long>
-
- org.orekit.files.iirv.terms.base.LongValuedIIRVTerm
-
- org.orekit.files.iirv.terms.SupportIdCodeTerm
-
- All Implemented Interfaces:
Comparable<IIRVVectorTerm<?>>
public class SupportIdCodeTerm extends LongValuedIIRVTerm
4-character mission-specific support identification code (SIC).Valid values: 0000-9999.
- Since:
- 13.0
- Author:
- Nick LaFarge
-
-
Field Summary
Fields Modifier and Type Field Description static int
SUPPORT_ID_TERM_LENGTH
The length of the IIRV term within the message.static String
SUPPORT_ID_TERM_PATTERN
Regular expression that ensures the validity of string values for this term (0000-9999).
-
Constructor Summary
Constructors Constructor Description SupportIdCodeTerm(long value)
Constructor.SupportIdCodeTerm(String value)
Constructor.
-
Method Summary
-
Methods inherited from class org.orekit.files.iirv.terms.base.LongValuedIIRVTerm
computeValueFromString, toEncodedString, toInt, validateNumericValue
-
Methods inherited from class org.orekit.files.iirv.terms.base.IIRVVectorTerm
compareTo, equals, hashCode, length, toEncodedString, validateString, value
-
-
-
-
Field Detail
-
SUPPORT_ID_TERM_LENGTH
public static final int SUPPORT_ID_TERM_LENGTH
The length of the IIRV term within the message.- See Also:
- Constant Field Values
-
SUPPORT_ID_TERM_PATTERN
public static final String SUPPORT_ID_TERM_PATTERN
Regular expression that ensures the validity of string values for this term (0000-9999).- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SupportIdCodeTerm
public SupportIdCodeTerm(String value)
Constructor.- Parameters:
value
- value of the support ID term
-
SupportIdCodeTerm
public SupportIdCodeTerm(long value)
Constructor.- Parameters:
value
- value of the support ID term
-
-