初始化
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package com.ifish.jpush.common;
|
||||
|
||||
public enum DeviceType {
|
||||
|
||||
Android("android"),
|
||||
IOS("ios"),
|
||||
WinPhone("winphone");
|
||||
|
||||
private final String value;
|
||||
|
||||
private DeviceType(final String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public String value() {
|
||||
return this.value;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user