public enum ValueType extends Enum<ValueType>
| 枚举常量和说明 |
|---|
CommonFunction |
Constant |
Input |
Method |
NamedReference |
Parameter |
Paren |
Variable |
VariableCategory |
public static final ValueType Input
public static final ValueType Variable
public static final ValueType Constant
public static final ValueType VariableCategory
public static final ValueType Method
public static final ValueType Parameter
public static final ValueType Paren
public static final ValueType CommonFunction
public static final ValueType NamedReference
public static ValueType[] values()
for (ValueType c : ValueType.values()) System.out.println(c);
public static ValueType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2018 Bstek. All rights reserved.