Enum TJCS

  • All Implemented Interfaces:
    Serializable, Comparable<TJCS>, jnr.ffi.util.EnumMapper.IntegerEnum

    public enum TJCS
    extends Enum<TJCS>
    implements jnr.ffi.util.EnumMapper.IntegerEnum
    • Enum Constant Detail

      • TJCS_RGB

        public static final TJCS TJCS_RGB
      • TJCS_YCbCr

        public static final TJCS TJCS_YCbCr
      • TJCS_GRAY

        public static final TJCS TJCS_GRAY
      • TJCS_CMYK

        public static final TJCS TJCS_CMYK
      • TJCS_YCCK

        public static final TJCS TJCS_YCCK
    • Method Detail

      • values

        public static TJCS[] 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 (TJCS c : TJCS.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TJCS 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
      • intValue

        public int intValue()
        Specified by:
        intValue in interface jnr.ffi.util.EnumMapper.IntegerEnum
      • fromInt

        public static TJCS fromInt​(int val)