com.dahuatech.icc.assesscontrol.enums.OpenResultEnums Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-accesscontrol Show documentation
Show all versions of java-sdk-accesscontrol Show documentation
Dahua ICC Open API SDK for Java
package com.dahuatech.icc.assesscontrol.enums;
import java.util.ArrayList;
import java.util.List;
public enum OpenResultEnums {
SUCCESS("1","成功"),
FAIL("0","失败")
;
public String code;
public String msg;
OpenResultEnums(String code,String msg){
this.code = code;
this.msg = msg;
}
public static List getTypeList(){
List list = new ArrayList<>();
for(OpenResultEnums item : OpenResultEnums.values()){
list.add(item.code);
}
return list;
}
public static boolean isRight(String type){
if(type == null){
return false;
}
for(OpenResultEnums item : OpenResultEnums.values()){
if(type.equals(item.code)){
return true;
}
}
return false;
}
}