b8cbb3afd20c129580eda79c130d0f14f88eee07.svn-base 732 字节
package com.espeed.ua;

public enum DeviceType {

	/**
	 * Standard desktop or laptop computer
	 */
	COMPUTER("Computer"),
	/**
	 * Mobile phone or similar small mobile device
	 */
	MOBILE("Mobile"),
	/**
	 * Small tablet type computer.
	 */
	TABLET("Tablet"),
	/**
	 * Game console like the Wii or Playstation.
	 */
	GAME_CONSOLE("Game console"),
	/**
	 * Digital media receiver like the Google TV.
	 */
	DMR("Digital media receiver"),
	/**
	 * Miniature device like a smart watch or interactive glasses
	 */
	WEARABLE("Wearable computer"),
	/**
	 * Other or unknow type of device.
	 */
	UNKNOWN("Unknown");

	String name;

	private DeviceType(String name) {
		this.name = name;
	}

	public String getName() {
		return name;
	}

}