public enum WalkRoutePlanError extends java.lang.Enum<WalkRoutePlanError>
Enum Constant and Description |
---|
DISTANCE_LESS_THAN_30M
距离太近
|
DISTANCE_MORE_THAN_50KM
距离太远
|
FORWARD_AK_ERROR
鉴权失败
|
INVAILD_PERMISSION
权限未开通
|
IS_NOT_SUPPORT_AR_NAVI
Android API级别低于21时不支持AR步行导航
|
IS_NOT_SUPPORT_INDOOR_NAVI
不支持该室内导航
|
NET_ERR
网络错误
|
PARSE_FAIL
解析失败
|
SERVER_UNUSUAL
服务器异常
|
Modifier and Type | Method and Description |
---|---|
static WalkRoutePlanError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WalkRoutePlanError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WalkRoutePlanError SERVER_UNUSUAL
public static final WalkRoutePlanError PARSE_FAIL
public static final WalkRoutePlanError NET_ERR
public static final WalkRoutePlanError FORWARD_AK_ERROR
public static final WalkRoutePlanError INVAILD_PERMISSION
public static final WalkRoutePlanError DISTANCE_LESS_THAN_30M
public static final WalkRoutePlanError DISTANCE_MORE_THAN_50KM
public static final WalkRoutePlanError IS_NOT_SUPPORT_INDOOR_NAVI
public static final WalkRoutePlanError IS_NOT_SUPPORT_AR_NAVI
public static WalkRoutePlanError[] values()
for (WalkRoutePlanError c : WalkRoutePlanError.values()) System.out.println(c);
public static WalkRoutePlanError valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null