psdi.mbo

Class KeyValue

  • java.lang.Object
    • psdi.mbo.KeyValue
  • All Implemented Interfaces:
    java.io.Serializable


    public class KeyValue
    extends java.lang.Object
    implements java.io.Serializable
    Represents the key value of an object.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor and Description
      KeyValue(java.lang.String s)
      Constructor can be used for single value keys
      KeyValue(java.lang.String[] keyVals)
      USe this for multipart keys
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      boolean equals(KeyValue kv)
      Check equals to KeyValue calss
      boolean equals(java.lang.String[] keys)
      Check if equal to array
      java.lang.String[] getAsString()
      Used to return the value asd a string
      java.lang.String toString()
      Used for debugging only
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • KeyValue

        public KeyValue(java.lang.String[] keyVals)
        USe this for multipart keys
      • KeyValue

        public KeyValue(java.lang.String s)
        Constructor can be used for single value keys
    • Method Detail

      • equals

        public boolean equals(java.lang.String[] keys)
        Check if equal to array
      • getAsString

        public java.lang.String[] getAsString()
        Used to return the value asd a string
      • equals

        public boolean equals(KeyValue kv)
        Check equals to KeyValue calss
      • toString

        public java.lang.String toString()
        Used for debugging only
        Overrides:
        toString in class java.lang.Object