Package | Description |
---|---|
ucar.unidata.metdata |
Meteorological data classes.
|
ucar.unidata.util |
General utilities.
|
Modifier and Type | Method and Description |
---|---|
ByteString |
WMOHeader.getCallSign()
Returns the "international four letter location indicator
of the station originating or compiling the bulletin" (CCCC).
|
ByteString |
Metar.getText()
Get the raw METAR text
|
ByteString |
WMOHeader.getText()
Get the header
|
Constructor and Description |
---|
Metar(Station stn,
Timestamp timestamp,
Ensemble ensemble,
ByteString text,
WMOHeader wmoHeader)
Create a new Metar
|
Modifier and Type | Class and Description |
---|---|
static class |
ByteString.Concrete
Class Concrete
|
static class |
ByteString.Empty
Class Empty
|
static class |
ByteString.SubString
A ByteString implementation whose
origin is offset in the underlying byte array and
whose length is possibly less than the underlying
byte array.
|
static class |
ByteString.TrSubString
A ByteString implementation which
which is zero based in the underlying byte array
but whose length is possibly less than the underlying
byte array.
|
static class |
Tokenizer.EmptyToken
Class EmptyToken
|
Modifier and Type | Field and Description |
---|---|
protected ByteString |
ByteStringInputStream.bs_
_more_
|
Modifier and Type | Method and Description |
---|---|
static ByteString |
ByteString.concat(ByteString bs1,
ByteString bs2,
char sep)
_more_
|
ByteString |
ByteString.subByteString(int beginIndex,
int length)
Returns a new string that is a substring of this string.
|
ByteString |
ByteString.Concrete.subByteString(int beginIndex,
int length)
_more_
|
ByteString |
ByteString.substring(int beginIndex) |
ByteString |
ByteString.Concrete.substring(int beginIndex)
_more_
|
ByteString |
ByteString.substring(int beginIndex,
int endindex) |
Modifier and Type | Method and Description |
---|---|
static int |
ByteString.compare(ByteString bs1,
ByteString bs2)
Compare two byte strings lexographically.
|
static int |
ByteString.compare(ByteString bs1,
java.lang.String s2)
Compare two byte strings lexographically.
|
int |
ByteString.compareTo(ByteString bs)
Compare this and another byte string lexographically.
|
static ByteString |
ByteString.concat(ByteString bs1,
ByteString bs2,
char sep)
_more_
|
Constructor and Description |
---|
ByteStringInputStream(ByteString bs)
_more_
|
Concrete(ByteString bs)
Copy constuctor.
|
Concrete(ByteString bs,
int length)
Copy constuctor which trims input to length.
|
Concrete(ByteString bs,
int origin,
int length)
Copy constuctor which trims input to
[origin, origin + length).
|