package CRSDK; @SuppressWarnings("unused") public enum CrEmbedLUTFile { CrEmbedLUTFile_Off (0x01), CrEmbedLUTFile_On (CrEmbedLUTFile_Off.getValue()+1); private final CrInt8u value; CrEmbedLUTFile(int value) { this.value = new CrInt8u(value); } public int getValue() { return value.intValue(); } }