CompareTo() public method

public CompareTo ( Object obj ) : int
obj Object
return int
Example #1
0
        // methods concerning the type of Dictionary

        /**
         * Checks if a <CODE>PdfDictionary</CODE> is of a certain type.
         *
         * @param		type	a type of dictionary
         * @return		<CODE>true</CODE> of <CODE>false</CODE>
         *
         * @deprecated
         */

        public bool isDictionaryType(PdfName type)
        {
            return(dictionaryType.CompareTo(type) == 0);
        }