#
Junjie
3 天以前 43a94fb2dbd0028a1c4fed5bbda6cb13b0365d60
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.zy.core.enums;
 
public enum SlaveType {
 
    Crn,
    DualCrn,
    Devp,
    Barcode,
    Led,
    Scale,
    Rgv
    ;
 
    public static SlaveType findInstance(String s){
        for (SlaveType type : SlaveType.values()) {
            if (type.toString().equals(s)) {
                return type;
            }
        }
        return null;
    }
}