public enum SpreadsheetSymbols extends Enum<SpreadsheetSymbols>
| Enum Constant and Description |
|---|
RETURN_NAME
cell name indicating return statement
|
TYPE_DELIMETER |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static SpreadsheetSymbols |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpreadsheetSymbols[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpreadsheetSymbols RETURN_NAME
public static final SpreadsheetSymbols TYPE_DELIMETER
public static SpreadsheetSymbols[] values()
for (SpreadsheetSymbols c : SpreadsheetSymbols.values()) System.out.println(c);
public static SpreadsheetSymbols valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<SpreadsheetSymbols>Copyright © 2004–2019 OpenL Tablets. All rights reserved.