RequestMethodOperator Class

public final class RequestMethodOperator
extends ExpandableStringEnum<RequestMethodOperator>

Describes operator to be matched.

Field Summary

Modifier and Type Field and Description
static final RequestMethodOperator EQUAL

Static value Equal for RequestMethodOperator.

Constructor Summary

Constructor Description
RequestMethodOperator()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of RequestMethodOperator value.

Method Summary

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

Creates or finds a RequestMethodOperator from its string representation.

static Collection<RequestMethodOperator> values()

Gets known RequestMethodOperator values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

EQUAL

public static final RequestMethodOperator EQUAL

Static value Equal for RequestMethodOperator.

Constructor Details

RequestMethodOperator

@Deprecated
public RequestMethodOperator()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of RequestMethodOperator value.

Method Details

fromString

public static RequestMethodOperator fromString(String name)

Creates or finds a RequestMethodOperator from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding RequestMethodOperator.

values

public static Collection<RequestMethodOperator> values()

Gets known RequestMethodOperator values.

Returns:

known RequestMethodOperator values.

Applies to