Class BitmapRecord


  • public class BitmapRecord
    extends java.lang.Object
    Implements a custom bit map record.
    • Constructor Summary

      Constructors 
      Constructor Description
      BitmapRecord​(java.lang.String literal, boolean value, java.lang.String description)
      Constructs a new instance.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object o)  
      java.lang.String getDescription()
      Gets the record description.
      java.lang.String getLiteral()
      Gets the map key name.
      boolean getValue()
      Gets the bit value.
      int hashCode()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

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

      • BitmapRecord

        public BitmapRecord​(java.lang.String literal,
                            boolean value,
                            java.lang.String description)
        Constructs a new instance.
        Parameters:
        literal - the map key name
        value - the bit value
        description - the record description
    • Method Detail

      • getLiteral

        public java.lang.String getLiteral()
        Gets the map key name.
        Returns:
        a string
      • getValue

        public boolean getValue()
        Gets the bit value.
        Returns:
        a boolean
      • getDescription

        public java.lang.String getDescription()
        Gets the record description.
        Returns:
        a string
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object