public static enum TokenOperatorPS.Operator extends Enum<TokenOperatorPS.Operator>
| Enum Constant and Description |
|---|
URI_INSERT
The '+' operator for URI inserts.
|
| Modifier and Type | Method and Description |
|---|---|
char |
character()
Returns the character.
|
static TokenOperatorPS.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TokenOperatorPS.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TokenOperatorPS.Operator URI_INSERT
empty = ""
path = "/foo/bar"
x = "1024"
{+path}/here /foo/bar/here
{+path,x}/here /foo/bar,1024/here
{+path}{x}/here /foo/bar1024/here
{+empty}/here /here
public static TokenOperatorPS.Operator[] values()
for (TokenOperatorPS.Operator c : TokenOperatorPS.Operator.values()) System.out.println(c);
public static TokenOperatorPS.Operator valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic char character()
Copyright © 2025. All rights reserved.