com.aspose.barcode.barcoderecognition

Class SingleDecodeType



  • public final class SingleDecodeType
    extends BaseDecodeType

    Single decode type. See decode type to get instance.


     This sample shows how to get instance of single decode type.
     
     SingleDecodeType singleType = DecodeType.QR
     
    • Constructor Detail

      • SingleDecodeType

        public SingleDecodeType(short typeIndex,
                                java.lang.String typeName)

        Initializes a new instance of SingleDecodeType class by type index and name

        Parameters:
        typeIndex - Gets an index of decode type
        typeName - Gets a name of decode type
    • Method Detail

      • getTypeIndex

        public short getTypeIndex()

        Gets an index of decode type

        Returns:
        The index of decode type
      • getTypeName

        public java.lang.String getTypeName()

        Gets a name of decode type

        Returns:
        The name of decode type
      • toString

        public java.lang.String toString()

        Overridden method representing SingleDecodeType as the Name string.

        Overrides:
        toString in class java.lang.Object
        Returns:
        A string representing the name of the single decode type
      • getString

        public java.lang.String getString()

        Converts the instance of SingleDecodeType to its equivalent string representation, using the following format: "Index:-1; Name:None".

        Returns:
        A string representing the complete value of the single decode type
      • getString

        public static java.lang.String getString(SingleDecodeType instance)

        Converts the instance of SingleDecodeType to its equivalent string representation, using the following format: "Index:-1; Name:None".

        Parameters:
        instance - The SingleDecodeType instance to convert
        Returns:
        A string representing the complete value of the given single decode type
      • containsAny

        public boolean containsAny(BaseDecodeType... types)

        Returns a value indicating whether this instance is included into the list specified.

        Specified by:
        containsAny in class BaseDecodeType
        Parameters:
        types - Array of single and multy decode types
        Returns:
        Value is a true if any types are included into
      • equals

        public boolean equals(SingleDecodeType other)

        Returns a value indicating whether this instance is equal to a specified SingleDecodeType value.

        Overrides:
        equals in class BaseDecodeType
        Parameters:
        other - An SingleDecodeType value to compare to this instance.
        Returns:
        True if obj has the same value as this instance; otherwise, false.
      • equals

        public boolean equals(java.lang.Object obj)

        Returns a value indicating whether this instance is equal to a specified SingleDecodeType value.

        Overrides:
        equals in class BaseDecodeType
        Parameters:
        obj - An System.Object value to compare to this instance.
        Returns:
        True if obj has the same value as this instance; otherwise, false.
      • hashCode

        public int hashCode()

        Returns the hash code for this instance.

        Overrides:
        hashCode in class BaseDecodeType
        Returns:
        A 32-bit signed integer hash code.
      • parseSingleDecodeType

        public static SingleDecodeType parseSingleDecodeType(java.lang.String stringDecodeType)

        Converts the string representation of the name of a SingleDecodeType to its instance.

        Parameters:
        stringDecodeType - A string containing the name of a SingleDecodeType to convert.
        Returns:
        the instance of , if conversion was successful; otherwise, it returns .
        See Also:
        SingleDecodeType