Class MessageField

java.lang.Object
com.millistream.www.MessageField

public class MessageField extends Object
This class represents a field of a message received from the server.
See Also:
  • Constructor Details

    • MessageField

      public MessageField(int tag, String value)
      Constructs a new MessageField object.
      Parameters:
      tag - field tag
      value - field value
      See Also:
  • Method Details

    • getTag

      public int getTag()
      Returns the Field Tag
      Returns:
      the field tag
      See Also:
    • getValue

      public String getValue()
      Returns the Field Value
      Returns:
      the field value as a string
    • getTabularValue

      public String[][] getTabularValue()
      Returns a tabular field value as a string array
      Returns:
      the tabular field value as a String[][]
    • toString

      public String toString()
      Constructs and returns a (debug) String of the Field Tag
      Overrides:
      toString in class Object