Package org.apache.poi.ss.formula.token
Enum NodeId
- java.lang.Object
-
- java.lang.Enum<NodeId>
-
- org.apache.poi.ss.formula.token.NodeId
-
- All Implemented Interfaces:
Serializable
,Comparable<NodeId>
public enum NodeId extends Enum<NodeId>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NodeId
valueOf(String name)
Returns the enum constant of this type with the specified name.static NodeId[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NameNode
public static final NodeId NameNode
-
BracketNode
public static final NodeId BracketNode
-
ExclamationNode
public static final NodeId ExclamationNode
-
AreaRefNode
public static final NodeId AreaRefNode
-
RefNode
public static final NodeId RefNode
-
FunctionNode
public static final NodeId FunctionNode
-
NameRefNode
public static final NodeId NameRefNode
-
TableRefNode
public static final NodeId TableRefNode
-
AddNode
public static final NodeId AddNode
-
SubtractNode
public static final NodeId SubtractNode
-
MultiNode
public static final NodeId MultiNode
-
DivNode
public static final NodeId DivNode
-
ExpNode
public static final NodeId ExpNode
-
AndNode
public static final NodeId AndNode
-
LessNode
public static final NodeId LessNode
-
LessThanEqual
public static final NodeId LessThanEqual
-
EqualNode
public static final NodeId EqualNode
-
GreatThanEqualNode
public static final NodeId GreatThanEqualNode
-
GreatNode
public static final NodeId GreatNode
-
NotEqualNode
public static final NodeId NotEqualNode
-
SpaceNode
public static final NodeId SpaceNode
-
CommaNode
public static final NodeId CommaNode
-
ColonNode
public static final NodeId ColonNode
-
PlusNode
public static final NodeId PlusNode
-
MinusNode
public static final NodeId MinusNode
-
PercentNode
public static final NodeId PercentNode
-
UnionNode
public static final NodeId UnionNode
-
EmptyNode
public static final NodeId EmptyNode
-
StringNode
public static final NodeId StringNode
-
ErrorNode
public static final NodeId ErrorNode
-
BoolNode
public static final NodeId BoolNode
-
IntegerNode
public static final NodeId IntegerNode
-
DoubleNode
public static final NodeId DoubleNode
-
ArrayColumnsNode
public static final NodeId ArrayColumnsNode
-
-
Method Detail
-
values
public static NodeId[] 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 (NodeId c : NodeId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NodeId valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-