Uses of Class
ucar.unidata.util.ByteString

Packages that use ByteString
ucar.unidata.metdata Meteorological data classes. 
ucar.unidata.util General utilities. 
 

Uses of ByteString in ucar.unidata.metdata
 

Methods in ucar.unidata.metdata that return ByteString
 ByteString WMOHeader.getCallSign()
          Returns the "international four letter location indicator of the station originating or compiling the bulletin" (CCCC).
 ByteString WMOHeader.getText()
          Get the header
 ByteString Metar.getText()
          Get the raw METAR text
 

Constructors in ucar.unidata.metdata with parameters of type ByteString
Metar(Station stn, Timestamp timestamp, Ensemble ensemble, ByteString text, WMOHeader wmoHeader)
          Create a new Metar
 

Uses of ByteString in ucar.unidata.util
 

Subclasses of ByteString in ucar.unidata.util
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
 

Fields in ucar.unidata.util declared as ByteString
protected  ByteString ByteStringInputStream.bs_
          _more_
 

Methods in ucar.unidata.util that return ByteString
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)
           
 

Methods in ucar.unidata.util with parameters of type ByteString
static int ByteString.compare(ByteString bs1, ByteString bs2)
          Compare two byte strings lexographically.
static int ByteString.compare(ByteString bs1, 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_
 

Constructors in ucar.unidata.util with parameters of type ByteString
ByteString.Concrete(ByteString bs)
          Copy constuctor.
ByteString.Concrete(ByteString bs, int length)
          Copy constuctor which trims input to length.
ByteString.Concrete(ByteString bs, int origin, int length)
          Copy constuctor which trims input to [origin, origin + length).
ByteStringInputStream(ByteString bs)
          _more_