public static enum Transport.Operation extends Enum<Transport.Operation>
Enum Constant and Description |
---|
FETCH
Transport is to fetch objects locally.
|
PUSH
Transport is to push objects remotely.
|
Modifier and Type | Method and Description |
---|---|
static Transport.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Transport.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transport.Operation FETCH
public static final Transport.Operation PUSH
public static Transport.Operation[] values()
for (Transport.Operation c : Transport.Operation.values()) System.out.println(c);
public static Transport.Operation 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 © 2017 Eclipse JGit Project. All rights reserved.