com.metaio.sdk.jni
Enum ECOLOR_FORMAT

java.lang.Object
  extended by java.lang.Enum<ECOLOR_FORMAT>
      extended by com.metaio.sdk.jni.ECOLOR_FORMAT
All Implemented Interfaces:
Serializable, Comparable<ECOLOR_FORMAT>

public enum ECOLOR_FORMAT
extends Enum<ECOLOR_FORMAT>


Enum Constant Summary
ECF_A1R5G5B5
           
ECF_A8B8G8R8
           
ECF_A8R8G8B8
           
ECF_B8G8R8
           
ECF_GRAY
           
ECF_HSV
           
ECF_R5G6B5
           
ECF_R8G8B8
           
ECF_UNKNOWN
           
ECF_V8A8U8Y8
           
ECF_V8Y8U8Y8
           
ECF_YUV420SP
           
ECF_YV12
           
 
Method Summary
static ECOLOR_FORMAT swigToEnum(int swigValue)
           
 int swigValue()
           
static ECOLOR_FORMAT valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ECOLOR_FORMAT[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ECF_A1R5G5B5

public static final ECOLOR_FORMAT ECF_A1R5G5B5

ECF_R5G6B5

public static final ECOLOR_FORMAT ECF_R5G6B5

ECF_R8G8B8

public static final ECOLOR_FORMAT ECF_R8G8B8

ECF_B8G8R8

public static final ECOLOR_FORMAT ECF_B8G8R8

ECF_A8R8G8B8

public static final ECOLOR_FORMAT ECF_A8R8G8B8

ECF_A8B8G8R8

public static final ECOLOR_FORMAT ECF_A8B8G8R8

ECF_V8Y8U8Y8

public static final ECOLOR_FORMAT ECF_V8Y8U8Y8

ECF_V8A8U8Y8

public static final ECOLOR_FORMAT ECF_V8A8U8Y8

ECF_YUV420SP

public static final ECOLOR_FORMAT ECF_YUV420SP

ECF_YV12

public static final ECOLOR_FORMAT ECF_YV12

ECF_GRAY

public static final ECOLOR_FORMAT ECF_GRAY

ECF_HSV

public static final ECOLOR_FORMAT ECF_HSV

ECF_UNKNOWN

public static final ECOLOR_FORMAT ECF_UNKNOWN
Method Detail

values

public static ECOLOR_FORMAT[] 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 (ECOLOR_FORMAT c : ECOLOR_FORMAT.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ECOLOR_FORMAT 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

swigValue

public final int swigValue()

swigToEnum

public static ECOLOR_FORMAT swigToEnum(int swigValue)