EnvironmentDefinitionParameterType Class

public final class EnvironmentDefinitionParameterType
extends ExpandableStringEnum<EnvironmentDefinitionParameterType>

The type of data a parameter accepts.

Field Summary

Modifier and Type Field and Description
static final EnvironmentDefinitionParameterType ARRAY

The parameter accepts an array of values.

static final EnvironmentDefinitionParameterType BOOLEAN

The parameter accepts a boolean value.

static final EnvironmentDefinitionParameterType INTEGER

The parameter accepts an integer value.

static final EnvironmentDefinitionParameterType NUMBER

The parameter accepts a number value.

static final EnvironmentDefinitionParameterType OBJECT

The parameter accepts an object value.

static final EnvironmentDefinitionParameterType STRING

The parameter accepts a string value.

Constructor Summary

Constructor Description
EnvironmentDefinitionParameterType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of EnvironmentDefinitionParameterType value.

Method Summary

Modifier and Type Method and Description
static EnvironmentDefinitionParameterType fromString(String name)

Creates or finds a EnvironmentDefinitionParameterType from its string representation.

static Collection<EnvironmentDefinitionParameterType> values()

Gets known EnvironmentDefinitionParameterType values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

ARRAY

public static final EnvironmentDefinitionParameterType ARRAY

The parameter accepts an array of values.

BOOLEAN

public static final EnvironmentDefinitionParameterType BOOLEAN

The parameter accepts a boolean value.

INTEGER

public static final EnvironmentDefinitionParameterType INTEGER

The parameter accepts an integer value.

NUMBER

public static final EnvironmentDefinitionParameterType NUMBER

The parameter accepts a number value.

OBJECT

public static final EnvironmentDefinitionParameterType OBJECT

The parameter accepts an object value.

STRING

public static final EnvironmentDefinitionParameterType STRING

The parameter accepts a string value.

Constructor Details

EnvironmentDefinitionParameterType

@Deprecated
public EnvironmentDefinitionParameterType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of EnvironmentDefinitionParameterType value.

Method Details

fromString

public static EnvironmentDefinitionParameterType fromString(String name)

Creates or finds a EnvironmentDefinitionParameterType from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding EnvironmentDefinitionParameterType.

values

public static Collection<EnvironmentDefinitionParameterType> values()

Gets known EnvironmentDefinitionParameterType values.

Returns:

known EnvironmentDefinitionParameterType values.

Applies to