public static enum DomainNameReader.ReaderNextState extends Enum<DomainNameReader.ReaderNextState>
| Enum Constant and Description |
|---|
InvalidDomainName
Trying to read the domain name caused it to be invalid.
|
ReadFragment
Finished reading, next step should be to read the fragment.
|
ReadPath
Finished reading, next step should be to read the path.
|
ReadPort
Finished reading, next step should be to read the port.
|
ReadQueryString
Finished reading, next step should be to read the query string.
|
ValidDomainName
The domain name is found to be valid.
|
| Modifier and Type | Method and Description |
|---|---|
static DomainNameReader.ReaderNextState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DomainNameReader.ReaderNextState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DomainNameReader.ReaderNextState InvalidDomainName
public static final DomainNameReader.ReaderNextState ValidDomainName
public static final DomainNameReader.ReaderNextState ReadFragment
public static final DomainNameReader.ReaderNextState ReadPath
public static final DomainNameReader.ReaderNextState ReadPort
public static final DomainNameReader.ReaderNextState ReadQueryString
public static DomainNameReader.ReaderNextState[] values()
for (DomainNameReader.ReaderNextState c : DomainNameReader.ReaderNextState.values()) System.out.println(c);
public static DomainNameReader.ReaderNextState 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 © 2016. All rights reserved.