@@ -47,12 +47,12 @@ public enum VehicleType { | |||
; | |||
private String value; | |||
private int Code; | |||
private int code; | |||
private VehicleType(String value, int code) { | |||
VehicleType(String value, int code) { | |||
this.value = value; | |||
this.Code = code; | |||
this.code = code; | |||
} | |||
public String getValue() { | |||
@@ -62,7 +62,7 @@ public enum VehicleType { | |||
public int getCode() { | |||
return Code; | |||
return code; | |||
} | |||
public static VehicleType valueOfCode(int code) { |