package com.multictrl.common.constant; import lombok.AllArgsConstructor; import lombok.Getter; @Getter @AllArgsConstructor public enum ExposureValue { // 负曝光值 EV_NEG_5_0("1", "-5.0EV"), EV_NEG_4_7("2", "-4.7EV"), EV_NEG_4_3("3", "-4.3EV"), EV_NEG_4_0("4", "-4.0EV"), EV_NEG_3_7("5", "-3.7EV"), EV_NEG_3_3("6", "-3.3EV"), EV_NEG_3_0("7", "-3.0EV"), EV_NEG_2_7("8", "-2.7EV"), EV_NEG_2_3("9", "-2.3EV"), EV_NEG_2_0("10", "-2.0EV"), EV_NEG_1_7("11", "-1.7EV"), EV_NEG_1_3("12", "-1.3EV"), EV_NEG_1_0("13", "-1.0EV"), EV_NEG_0_7("14", "-0.7EV"), EV_NEG_0_3("15", "-0.3EV"), // 零曝光值 EV_0("16", "0EV"), // 正曝光值 EV_POS_0_3("17", "0.3EV"), EV_POS_0_7("18", "0.7EV"), EV_POS_1_0("19", "1.0EV"), EV_POS_1_3("20", "1.3EV"), EV_POS_1_7("21", "1.7EV"), EV_POS_2_0("22", "2.0EV"), EV_POS_2_3("23", "2.3EV"), EV_POS_2_7("24", "2.7EV"), EV_POS_3_0("25", "3.0EV"), EV_POS_3_3("26", "3.3EV"), EV_POS_3_7("27", "3.7EV"), EV_POS_4_0("28", "4.0EV"), EV_POS_4_3("29", "4.3EV"), EV_POS_4_7("30", "4.7EV"), EV_POS_5_0("31", "5.0EV"), // 特殊值 FIXED("255", "FIXED"); private final String code; private final String desc; }