初始化

This commit is contained in:
谢洪龙
2017-08-23 12:20:15 +08:00
commit 491d430741
471 changed files with 16355 additions and 0 deletions
@@ -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;
}
}