Class SingleDecodeType

java.lang.Object
com.aspose.barcode.barcoderecognition.BaseDecodeType
com.aspose.barcode.barcoderecognition.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
 

  • Method Details

    • getTypeIndex

      public short getTypeIndex()

      Gets an index of decode type

      Returns:
      The index of decode type
    • getTypeName

      public String getTypeName()

      Gets a name of decode type

      Returns:
      The name of decode type
    • toString

      public String toString()

      Overridden method representing SingleDecodeType as the Name string.

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

      public 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 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 multi decode types
      Returns:
      Value is a true if any types are included into
    • equals

      public boolean equals(SingleDecodeType other)
      Description copied from class: BaseDecodeType

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

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

      public boolean equals(com.aspose.barcode.barcoderecognition.MultiDecodeType other)
      Description copied from class: BaseDecodeType

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

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

      public boolean equals(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 Object
      Returns:
      A 32-bit signed integer hash code.
    • parseSingleDecodeType

      public static SingleDecodeType parseSingleDecodeType(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 {@link <b></b>}.
      See Also: