13 lines
507 B
Java
13 lines
507 B
Java
package CRSDK;
|
|
|
|
@SuppressWarnings("unused")
|
|
public enum CrEframingProductionEffect {
|
|
CrEframingProductionEffect_Off(0x0001),
|
|
CrEframingProductionEffect_IntervalZoomInOut_15sec(CrEframingProductionEffect_Off.getValue() + 1),
|
|
CrEframingProductionEffect_IntervalZoomInOut_30sec(CrEframingProductionEffect_Off.getValue() + 2);
|
|
|
|
private final CrInt16u value;
|
|
CrEframingProductionEffect(int value) { this.value = new CrInt16u(value); }
|
|
public int getValue() { return value.intValue(); }
|
|
}
|