public enum SemanticType extends java.lang.Enum<SemanticType>
Enum Constant and Description |
---|
AIDUI
本地内置语义
|
BCDV2
本地内置语义bcdv2,与 AIDUI 互斥
|
BUILDIN
本地内置语义,与AIDUI
AIDUI |
DUI
DUI本地技能
|
MIX
混合语义:目前包含离线导航+DUI本地技能,后续继续扩展
|
MIX_BCDV2_DUI
混合语义:目前包含离线bcdv2+DUI本地技能,后续继续扩展
|
MIX_BUILDIN_DUI
混合语义:内置语义+DUI本地技能
|
MIX_BUILDIN_NAVI
混合语义:内置语义+离线导航
|
MIX_NAVI_DUI
Deprecated.
请参考
MIX |
NAVI
Deprecated.
请参考
BUILDIN |
Modifier and Type | Method and Description |
---|---|
int |
getType() |
static SemanticType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SemanticType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Deprecated public static final SemanticType NAVI
BUILDIN
public static final SemanticType DUI
public static final SemanticType BUILDIN
AIDUI
public static final SemanticType AIDUI
public static final SemanticType BCDV2
@Deprecated public static final SemanticType MIX_NAVI_DUI
MIX
public static final SemanticType MIX_BUILDIN_DUI
public static final SemanticType MIX_BUILDIN_NAVI
public static final SemanticType MIX
public static final SemanticType MIX_BCDV2_DUI
public static SemanticType[] values()
for (SemanticType c : SemanticType.values()) System.out.println(c);
public static SemanticType 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 nullpublic int getType()