public enum SystemColumnType extends Enum<SystemColumnType>
| Enum Constant and Description |
|---|
AUTO_NUMBER
Represents the AUTO_NUMBER system column type.
|
CREATED_BY
Represents the CREATED_BY system column type.
|
CREATED_DATE
Represents the CREATED_DATE system column type.
|
MODIFIED_BY
Represents the MODIFIED_BY system column type.
|
MODIFIED_DATE
Represents the MODIFIED_DATE system column type.
|
| Modifier and Type | Method and Description |
|---|---|
static SystemColumnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SystemColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemColumnType AUTO_NUMBER
public static final SystemColumnType MODIFIED_DATE
public static final SystemColumnType MODIFIED_BY
public static final SystemColumnType CREATED_DATE
public static final SystemColumnType CREATED_BY
public static SystemColumnType[] values()
for (SystemColumnType c : SystemColumnType.values()) System.out.println(c);
public static SystemColumnType 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 © 2014–2017 Smartsheet. All rights reserved.