[TOC]
- 上一个类
- 下一个类
cn.jpush.im.android.api.enums
枚举 PlatformType
- java.lang.Object
- java.lang.Enum<PlatformType>
- cn.jpush.im.android.api.enums.PlatformType
- 所有已实现的接口:
- java.io.Serializable, java.lang.Comparable<PlatformType>
public enum PlatformType extends java.lang.Enum<PlatformType>
Created by hxhg on 2018/1/4.
枚举常量概要
枚举常量 枚举常量和说明 all
android
ios
web
windows
方法概要
所有方法 静态方法;) 实例方法;) 具体方法;) 限定符和类型 方法和说明 static PlatformType
getTypeFromValue(int value)
int
getValue()
static PlatformType
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
static PlatformType[]
values()
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
-
从类继承的方法 java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
从类继承的方法 java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
枚举常量详细资料
-
android
public static final PlatformType android
-
ios
public static final PlatformType ios
-
windows
public static final PlatformType windows
-
web
public static final PlatformType web
-
all
public static final PlatformType all
方法详细资料
-
values
public static PlatformType[] values()
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。该方法可用于迭代 常量, 如下所示:
for (PlatformType c : PlatformType.values()) System.out.println(c);
- 返回:
- 按照声明该枚举类型的常量的顺序返回的包含这些常量的数组
-
valueOf
public static PlatformType valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。 字符串必须与用于声明该类型的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)
- 参数:
- <code>name</code> - 要返回的枚举常量的名称。
- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
- <code>java.lang.IllegalArgumentException</code> - 如果该枚举类型没有带有指定名称的常量
- <code>java.lang.NullPointerException</code> - 如果参数为空值
-
getValue
public int getValue()
-
getTypeFromValue
public static PlatformType getTypeFromValue(int value)
- 上一个类
- 下一个类