public enum ApplicationFieldType extends Enum<ApplicationFieldType>
| Enum Constant and Description |
|---|
APP
A reference to another app item.
|
CALCULATION
A calculation based on fields in the same or related apps
|
CATEGORY
A category field with multiple values
|
CONTACT
Holds a reference to a profile, which can be either a member or a contact
|
DATE
A interval presented by a start and optional end date and optional time
|
DURATION
A duration field specified in seconds but often displayed in hours,
minutes, seconds.
|
EMBED
A list of embeds
|
FILE
A generic file field to hold many kinds of files
|
IMAGE
Holds an image.
|
LOCATION
A location in f.ex.
|
MEMBER
Reference a member in the same space as the app
|
MONEY
A currency value
|
NUMBER
A field that can hold a single number with decimals.
|
PROGRESS
The progress of an app item.
|
TEXT
A short text field that can hold a string
|
VIDEO
An uploaded video file.
|
| Modifier and Type | Method and Description |
|---|---|
static ApplicationFieldType |
getByName(String value) |
String |
toString() |
static ApplicationFieldType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationFieldType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationFieldType TEXT
public static final ApplicationFieldType NUMBER
public static final ApplicationFieldType IMAGE
public static final ApplicationFieldType DATE
public static final ApplicationFieldType APP
public static final ApplicationFieldType MEMBER
public static final ApplicationFieldType MONEY
public static final ApplicationFieldType PROGRESS
public static final ApplicationFieldType LOCATION
public static final ApplicationFieldType VIDEO
public static final ApplicationFieldType DURATION
public static final ApplicationFieldType CONTACT
public static final ApplicationFieldType CALCULATION
public static final ApplicationFieldType EMBED
public static final ApplicationFieldType CATEGORY
public static final ApplicationFieldType FILE
public static ApplicationFieldType[] values()
for (ApplicationFieldType c : ApplicationFieldType.values()) System.out.println(c);
public static ApplicationFieldType 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<ApplicationFieldType>public static ApplicationFieldType getByName(String value)
Copyright © 2014. All Rights Reserved.