public static enum TransportProtocol.URIishField extends Enum<TransportProtocol.URIishField>
URIish that a transport uses.| Enum Constant and Description | 
|---|
HOST
the host field 
 | 
PASS
the pass (aka password) field 
 | 
PATH
the path field 
 | 
PORT
the port field 
 | 
USER
the user field 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static TransportProtocol.URIishField | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static TransportProtocol.URIishField[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final TransportProtocol.URIishField USER
public static final TransportProtocol.URIishField PASS
public static final TransportProtocol.URIishField HOST
public static final TransportProtocol.URIishField PORT
public static final TransportProtocol.URIishField PATH
public static TransportProtocol.URIishField[] values()
for (TransportProtocol.URIishField c : TransportProtocol.URIishField.values()) System.out.println(c);
public static TransportProtocol.URIishField 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 © 2018 Eclipse JGit Project. All rights reserved.