public static enum Mergeinfo.Inheritance extends java.lang.Enum<Mergeinfo.Inheritance>
ISVNRemote.getMergeinfo(java.lang.Iterable<java.lang.String>, long, org.apache.subversion.javahl.types.Mergeinfo.Inheritance, boolean).| Enum Constant and Description |
|---|
explicit
Explicit mergeinfo only.
|
inherited
Explicit mergeinfo, or if that doesn't exist, the inherited
mergeinfo from a target's nearest (path-wise, not history-wise)
ancestor.
|
nearest_ancestor
Mergeinfo inherited from a target's nearest (path-wise,
not history-wise) ancestor, regardless of whether target
has explicit mergeinfo.
|
| Modifier and Type | Method and Description |
|---|---|
static Mergeinfo.Inheritance |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Mergeinfo.Inheritance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mergeinfo.Inheritance explicit
public static final Mergeinfo.Inheritance inherited
public static final Mergeinfo.Inheritance nearest_ancestor
public static Mergeinfo.Inheritance[] values()
for (Mergeinfo.Inheritance c : Mergeinfo.Inheritance.values()) System.out.println(c);
public static Mergeinfo.Inheritance valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null