Package com.baidu.navisdk.adapter
Enum IBNaviListener.MapStateMode
- java.lang.Object
-
- java.lang.Enum<IBNaviListener.MapStateMode>
-
- com.baidu.navisdk.adapter.IBNaviListener.MapStateMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IBNaviListener.MapStateMode>
- Enclosing class:
- IBNaviListener
public static enum IBNaviListener.MapStateMode extends java.lang.Enum<IBNaviListener.MapStateMode>
操作态和导航态
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IBNaviListener.MapStateMode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IBNaviListener.MapStateMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BROWSE
public static final IBNaviListener.MapStateMode BROWSE
-
NAVING
public static final IBNaviListener.MapStateMode NAVING
-
-
Method Detail
-
values
public static IBNaviListener.MapStateMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IBNaviListener.MapStateMode c : IBNaviListener.MapStateMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IBNaviListener.MapStateMode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-