public enum ParseIssue extends Enum<ParseIssue>
| Enum Constant and Description | 
|---|
| BACKSLASH_AS_DELIMITER | 
| ILLEGAL_CHARACTER | 
| ILLEGAL_WHITESPACE | 
| INVALID_HOST | 
| INVALID_PERCENT_ENCODING | 
| MISSING_SCHEME | 
| UNSPECIFIED | 
| Modifier and Type | Method and Description | 
|---|---|
| static ParseIssue | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ParseIssue[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ParseIssue UNSPECIFIED
public static final ParseIssue MISSING_SCHEME
public static final ParseIssue INVALID_PERCENT_ENCODING
public static final ParseIssue BACKSLASH_AS_DELIMITER
public static final ParseIssue ILLEGAL_WHITESPACE
public static final ParseIssue ILLEGAL_CHARACTER
public static final ParseIssue INVALID_HOST
public static ParseIssue[] values()
for (ParseIssue c : ParseIssue.values()) System.out.println(c);
public static ParseIssue 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 © 2013–2014. All rights reserved.