public enum RMMergeMode extends java.lang.Enum<RMMergeMode>
RMSearch
Enum Constant and Description |
---|
Intersection
The search results represent an intersection of classes found across all
repositories involved.
|
Union
The search results represent a union of a classes found across the
repositories involved.
|
Modifier and Type | Method and Description |
---|---|
static RMMergeMode |
getInstanceFromInt(int intValue)
Provides the
RMMergeMode instance that corresponds to the given
int value. |
int |
getIntValue()
Returns the integer value associated with this member.
|
static RMMergeMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RMMergeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RMMergeMode Intersection
public static final RMMergeMode Union
public static RMMergeMode[] values()
for (RMMergeMode c : RMMergeMode.values()) System.out.println(c);
public static RMMergeMode 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 nullpublic int getIntValue()
int
value.public static RMMergeMode getInstanceFromInt(int intValue)
RMMergeMode
instance that corresponds to the given
int
value.intValue
- the int
value to look up.RMMergeMode
value or null
if no such value
corresponds to the given intValue
parameter.© Copyright IBM Corp. 2010, 2013. All Rights Reserved.