@Immutable public enum FsUriModifier extends java.lang.Enum<FsUriModifier>
| Modifier and Type | Class and Description |
|---|---|
static class |
FsUriModifier.PostFix
Post-fixes a URI when it gets
canonicalized. |
| Enum Constant and Description |
|---|
CANONICALIZE
The canonicalize modifier applies a
post-fix which
depends on the class specific URI syntax. |
NULL
The null modifier does nothing but ensure that the URI path is in normal
form.
|
| Modifier and Type | Method and Description |
|---|---|
static FsUriModifier |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FsUriModifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FsUriModifier NULL
public static final FsUriModifier CANONICALIZE
post-fix which
depends on the class specific URI syntax.public static FsUriModifier[] values()
for (FsUriModifier c : FsUriModifier.values()) System.out.println(c);
public static FsUriModifier 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