public enum StateVectorKey extends Enum<StateVectorKey>
Enum Constant and Description |
---|
COMMENT
注释条目。
|
X
对象位置矢量X分量。
|
X_DOT
对象速度矢量X分量。
|
Y
对象位置矢量Y分量。
|
Y_DOT
对象速度矢量Y分量。
|
Z
对象位置矢量Z分量。
|
Z_DOT
对象速度矢量Z分量。
|
Modifier and Type | Method and Description |
---|---|
boolean |
process(ParseToken token, ContextBinding context, StateVector container)
处理一个标记。
|
static StateVectorKey |
valueOf(String name)
返回具有指定名称的此类型的枚举常量。
|
static StateVectorKey[] |
values()
返回一个包含此枚举类型常量的数组,按声明顺序排列。
|
public static final StateVectorKey COMMENT
public static final StateVectorKey X
public static final StateVectorKey Y
public static final StateVectorKey Z
public static final StateVectorKey X_DOT
public static final StateVectorKey Y_DOT
public static final StateVectorKey Z_DOT
public static StateVectorKey[] values()
for (StateVectorKey c : StateVectorKey.values()) System.out.println(c);
public static StateVectorKey valueOf(String name)
name
- 要返回的枚举常量的名称。
IllegalArgumentException
- 如果此枚举类型没有具有指定名称的常量
NullPointerException
- 如果参数为null
public boolean process(ParseToken token, ContextBinding context, StateVector container)
token
- 要处理的标记
context
- 上下文绑定
container
- 要填充的容器
Copyright © 2002-2023 CS GROUP. All rights reserved.