Class CFFCharset.Entry

  • Enclosing class:
    CFFCharset

    public static class CFFCharset.Entry
    extends java.lang.Object
    This class represents a single SID/name mapping of the charset.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected Entry​(int sid, java.lang.String name)
      Create a new instance of Entry with the given values.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getName()
      The Name of this entry.
      int getSID()
      The SID of this entry.
      java.lang.String toString()
      • Methods inherited from class java.lang.Object

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

      • Entry

        protected Entry​(int sid,
                        java.lang.String name)
        Create a new instance of Entry with the given values.
        Parameters:
        sid - the SID
        name - the Name
    • Method Detail

      • getSID

        public int getSID()
        The SID of this entry.
        Returns:
        the SID
      • getName

        public java.lang.String getName()
        The Name of this entry.
        Returns:
        the name
      • toString

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