TransformType Class

public final class TransformType
extends ExpandableStringEnum<TransformType>

Describes what transforms were applied before matching.

Field Summary

Modifier and Type Field and Description
static final TransformType LOWERCASE

Static value Lowercase for TransformType.

static final TransformType REMOVE_NULLS

Static value RemoveNulls for TransformType.

static final TransformType TRIM

Static value Trim for TransformType.

static final TransformType UPPERCASE

Static value Uppercase for TransformType.

static final TransformType URL_DECODE

Static value UrlDecode for TransformType.

static final TransformType URL_ENCODE

Static value UrlEncode for TransformType.

Constructor Summary

Constructor Description
TransformType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of TransformType value.

Method Summary

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

Creates or finds a TransformType from its string representation.

static Collection<TransformType> values()

Gets known TransformType values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

LOWERCASE

public static final TransformType LOWERCASE

Static value Lowercase for TransformType.

REMOVE_NULLS

public static final TransformType REMOVE_NULLS

Static value RemoveNulls for TransformType.

TRIM

public static final TransformType TRIM

Static value Trim for TransformType.

UPPERCASE

public static final TransformType UPPERCASE

Static value Uppercase for TransformType.

URL_DECODE

public static final TransformType URL_DECODE

Static value UrlDecode for TransformType.

URL_ENCODE

public static final TransformType URL_ENCODE

Static value UrlEncode for TransformType.

Constructor Details

TransformType

@Deprecated
public TransformType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of TransformType value.

Method Details

fromString

public static TransformType fromString(String name)

Creates or finds a TransformType from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding TransformType.

values

public static Collection values()

Gets known TransformType values.

Returns:

known TransformType values.

Applies to