public enum FlowAttributeType extends Enum<FlowAttributeType>
Enum Constant and Description |
---|
BOOLEAN
Attribute type is
Boolean . |
DATE
Attribute type is date.
|
FILE
Attribute type is file.
|
FOLDER
Attribute type is folder.
|
NUMERIC
Attribute type is numeric.
|
PRINCIPAL
Attribute type is principal.
|
TEXT
Attribute type is text.
|
USER
Attribute type is a user.
|
Modifier and Type | Method and Description |
---|---|
static FlowAttributeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowAttributeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowAttributeType USER
public static final FlowAttributeType PRINCIPAL
public static final FlowAttributeType FILE
public static final FlowAttributeType FOLDER
public static final FlowAttributeType DATE
date
.public static final FlowAttributeType TEXT
public static final FlowAttributeType NUMERIC
public static final FlowAttributeType BOOLEAN
public static FlowAttributeType[] values()
for (FlowAttributeType c : FlowAttributeType.values()) System.out.println(c);
public static FlowAttributeType 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 null<i>Copyright (c) 2020, SAS Institute Inc., Cary, NC, USA</i>