com.groupdocs.metadata.core

Interfaces

Classes

Enums

Exceptions

com.groupdocs.metadata.core

Enum TiffTagType

    • Enum Constant Detail

      • Byte

        public static final TiffTagType Byte

        An 8-bit unsigned integer.

      • Ascii

        public static final TiffTagType Ascii

        An 8-bit byte with a 7-bit ASCII character.

      • Short

        public static final TiffTagType Short

        A 16-bit unsigned integer.

      • Long

        public static final TiffTagType Long

        A 32-bit unsigned integer.

      • Rational

        public static final TiffTagType Rational

        A pair of LONGs, numerator then denominator.

      • SByte

        public static final TiffTagType SByte

        An 8-bit signed integer.

      • Undefined

        public static final TiffTagType Undefined

        An undefined 8-bit byte.

      • SShort

        public static final TiffTagType SShort

        A 16-bit signed integer.

      • SLong

        public static final TiffTagType SLong

        A 32-bit signed integer.

      • SRational

        public static final TiffTagType SRational

        A pair of SLONGs, numerator then denominator.

      • Float

        public static final TiffTagType Float

        A 4-byte IEEE floating point value.

      • Double

        public static final TiffTagType Double

        An 8-byte IEEE floating point value.

      • SubIfd

        public static final TiffTagType SubIfd

        A 4-byte long offset value

    • Method Detail

      • values

        public static TiffTagType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (TiffTagType c : TiffTagType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TiffTagType valueOf(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getByRawValue

        public static TiffTagType getByRawValue(int rawValue)
      • getAllValues

        public Object[] getAllValues()
        Description copied from interface: IEnumValue

        Returns the array of all values defined in the class.

        Specified by:
        getAllValues in interface IEnumValue
        Returns:
        The array of all values defined in the class.
      • getEnumValueByRawValue

        public IEnumValue getEnumValueByRawValue(int rawValue)
        Description copied from interface: IEnumValue

        Returns the enumeration value by the raw value associated with it.

        Specified by:
        getEnumValueByRawValue in interface IEnumValue
        Parameters:
        rawValue - The raw value.
        Returns:
        The enumeration value.
      • getEnumValueByName

        public IEnumValue getEnumValueByName(String name)
        Description copied from interface: IEnumValue

        Returns the enumeration value by its name.

        Specified by:
        getEnumValueByName in interface IEnumValue
        Parameters:
        name - The name of the enumeration value.
        Returns:
        The enumeration value.
      • getRawValueType

        public RawIntegerType getRawValueType()
        Description copied from interface: IEnumValue

        Returns the underlying type of the raw value of this enumeration value.

        Specified by:
        getRawValueType in interface IEnumValue
        Returns:
        The underlying type of the raw value.
      • getRawValue

        public int getRawValue()
        Description copied from interface: IEnumValue

        Returns the raw value of this enumeration value.

        Specified by:
        getRawValue in interface IEnumValue
        Returns:
        The raw value.