public static enum URIUtils.UriFlag extends Enum<URIUtils.UriFlag>
| Enum Constant and Description | 
|---|
| DROP_FRAGMENT | 
| NORMALIZE | 
| Modifier and Type | Method and Description | 
|---|---|
| static URIUtils.UriFlag | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static URIUtils.UriFlag[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final URIUtils.UriFlag DROP_FRAGMENT
public static final URIUtils.UriFlag NORMALIZE
public static URIUtils.UriFlag[] values()
for (URIUtils.UriFlag c : URIUtils.UriFlag.values()) System.out.println(c);
public static URIUtils.UriFlag 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 nullCopyright © 1999–2022 The Apache Software Foundation. All rights reserved.