public static enum API.Status extends Enum<API.Status>
| 枚举常量和说明 |
|---|
DEPRECATED
Should no longer be used.
|
EXPERIMENTAL
Intended for new, experimental features where the publisher of the
API is looking for feedback.
|
INTERNAL
Must not be used by any external code.
|
MAINTAINED
Intended for features that will not be changed in a backwards-
incompatible way for at least the next minor release of the current
major version.
|
STABLE
Intended for features that will not be changed in a backwards-
incompatible way in the current major version.
|
public static final API.Status INTERNAL
public static final API.Status DEPRECATED
public static final API.Status EXPERIMENTAL
Use with caution. Might be promoted to MAINTAINED or
STABLE in the future, but might also be removed without
prior notice.
public static final API.Status MAINTAINED
DEPRECATED first.public static final API.Status STABLE
public static API.Status[] values()
for (API.Status c : API.Status.values()) System.out.println(c);
public static API.Status valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2018. All rights reserved.