public class Accuracy extends ASN1Encodable
Modifier and Type | Field and Description |
---|---|
protected static int |
MAX_MICROS |
protected static int |
MAX_MILLIS |
protected static int |
MIN_MICROS |
protected static int |
MIN_MILLIS |
BER, DER
Modifier | Constructor and Description |
---|---|
protected |
Accuracy() |
|
Accuracy(ASN1Sequence seq) |
|
Accuracy(DERInteger seconds,
DERInteger millis,
DERInteger micros) |
Modifier and Type | Method and Description |
---|---|
static Accuracy |
getInstance(java.lang.Object o) |
DERInteger |
getMicros() |
DERInteger |
getMillis() |
DERInteger |
getSeconds() |
DERObject |
toASN1Object()
Accuracy ::= SEQUENCE {
seconds INTEGER OPTIONAL,
millis [0] INTEGER (1..999) OPTIONAL,
micros [1] INTEGER (1..999) OPTIONAL
}
|
equals, getDEREncoded, getDERObject, getEncoded, getEncoded, hashCode
protected static final int MIN_MILLIS
protected static final int MAX_MILLIS
protected static final int MIN_MICROS
protected static final int MAX_MICROS
protected Accuracy()
public Accuracy(DERInteger seconds, DERInteger millis, DERInteger micros)
public Accuracy(ASN1Sequence seq)
public static Accuracy getInstance(java.lang.Object o)
public DERInteger getSeconds()
public DERInteger getMillis()
public DERInteger getMicros()
public DERObject toASN1Object()
Accuracy ::= SEQUENCE { seconds INTEGER OPTIONAL, millis [0] INTEGER (1..999) OPTIONAL, micros [1] INTEGER (1..999) OPTIONAL }
toASN1Object
in class ASN1Encodable