package CRSDK; @SuppressWarnings("unused") public enum CrFaceFrameType { CrFaceFrameType_Unknown (0x0000), CrFaceFrameType_DetectedFace (0x0001), CrFaceFrameType_AF_TargetFace (CrFaceFrameType_DetectedFace.getValue()+1), CrFaceFrameType_PersonalRecognitionFace (CrFaceFrameType_DetectedFace.getValue()+2), CrFaceFrameType_SmileDetectionFace (CrFaceFrameType_DetectedFace.getValue()+3), CrFaceFrameType_SelectedFace (CrFaceFrameType_DetectedFace.getValue()+4), CrFaceFrameType_AF_TargetSelectionFace (CrFaceFrameType_DetectedFace.getValue()+5), CrFaceFrameType_SmileDetectionSelectFace (CrFaceFrameType_DetectedFace.getValue()+6); private final CrInt16u value; CrFaceFrameType(int value) { this.value = new CrInt16u(value); } public int getValue() { return value.intValue(); } }