ExceptionEntrySelectorMatchOperator Class

public final class ExceptionEntrySelectorMatchOperator
extends ExpandableStringEnum<ExceptionEntrySelectorMatchOperator>

When the matchVariable points to a key-value pair (e.g, RequestHeader), this operates on the selector.

Field Summary

Modifier and Type Field and Description
static final ExceptionEntrySelectorMatchOperator CONTAINS

Contains.

static final ExceptionEntrySelectorMatchOperator ENDS_WITH

EndsWith.

static final ExceptionEntrySelectorMatchOperator EQUALS

Equals.

static final ExceptionEntrySelectorMatchOperator STARTS_WITH

StartsWith.

Constructor Summary

Constructor Description
ExceptionEntrySelectorMatchOperator()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ExceptionEntrySelectorMatchOperator value.

Method Summary

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

Creates or finds a ExceptionEntrySelectorMatchOperator from its string representation.

static Collection<ExceptionEntrySelectorMatchOperator> values()

Gets known ExceptionEntrySelectorMatchOperator values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

CONTAINS

public static final ExceptionEntrySelectorMatchOperator CONTAINS

Contains.

ENDS_WITH

public static final ExceptionEntrySelectorMatchOperator ENDS_WITH

EndsWith.

EQUALS

public static final ExceptionEntrySelectorMatchOperator EQUALS

Equals.

STARTS_WITH

public static final ExceptionEntrySelectorMatchOperator STARTS_WITH

StartsWith.

Constructor Details

ExceptionEntrySelectorMatchOperator

@Deprecated
public ExceptionEntrySelectorMatchOperator()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ExceptionEntrySelectorMatchOperator value.

Method Details

fromString

public static ExceptionEntrySelectorMatchOperator fromString(String name)

Creates or finds a ExceptionEntrySelectorMatchOperator from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding ExceptionEntrySelectorMatchOperator.

values

public static Collection<ExceptionEntrySelectorMatchOperator> values()

Gets known ExceptionEntrySelectorMatchOperator values.

Returns:

known ExceptionEntrySelectorMatchOperator values.

Applies to