public enum SavedDocumentColumn extends Enum<SavedDocumentColumn>
Enum Constant and Description |
---|
DOCUMENT_ID
document id
|
ID
id
|
SAVED_BY
created by
|
SAVED_DATE
todo save date
|
TITLE
todo id
|
Modifier and Type | Method and Description |
---|---|
static SavedDocumentColumn |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SavedDocumentColumn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SavedDocumentColumn ID
public static final SavedDocumentColumn DOCUMENT_ID
public static final SavedDocumentColumn TITLE
public static final SavedDocumentColumn SAVED_DATE
public static final SavedDocumentColumn SAVED_BY
public static SavedDocumentColumn[] values()
for (SavedDocumentColumn c : SavedDocumentColumn.values()) System.out.println(c);
public static SavedDocumentColumn 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 nullCopyright © 2007-2020 Whitestein Technologies. All Rights Reserved.