public enum StringOperationEventFireTime extends java.lang.Enum<StringOperationEventFireTime> implements EventFireTime<StringEventData>
| Enum Constant and Description |
|---|
HttpParameterEncodeKey
Called when an http parameter key (GET or POST) is encoded.
|
HttpParameterEncodeValue
Called when an http parameter value (GET or POST) is encoded.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
getDefaultReturnValue(StringEventData data)
Gets the default value to return for this time from the data
|
static StringOperationEventFireTime |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StringOperationEventFireTime[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringOperationEventFireTime HttpParameterEncodeKey
public static final StringOperationEventFireTime HttpParameterEncodeValue
public static StringOperationEventFireTime[] values()
for (StringOperationEventFireTime c : StringOperationEventFireTime.values()) System.out.println(c);
public static StringOperationEventFireTime valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null@Nullable public java.lang.Object getDefaultReturnValue(@NotNull StringEventData data)
EventFireTimegetDefaultReturnValue in interface EventFireTime<StringEventData>data - The event data