DeviceIds.java 436 Bytes
Newer Older
wang-jinfeng committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
package mobvista.dmp.common;

/**
 * Created by superwood
 * Product: IntelliJ IDEA
 * Date: 16/12/8
 * Time: 16:06
 * package: mobvista.dmp.common
 * function: todo
 */
public enum DeviceIds {
	DEVICE_GAID("gaid"),
	DEVICE_IDFA("idfa"),
	DEVICE_IMEI("imei"),
	DEVICE_ANDROIDID("android_id"),
	DEVICE_MAC("mac_id");

	private String name ;
	DeviceIds(String name){
		this.name = name;
	}
	public String getName(){
		return name;
	}
}