|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<ChannelSelectorType> org.apache.flume.conf.channel.ChannelSelectorType
public enum ChannelSelectorType
Enumeration of built in channel selector types available in the system.
Enum Constant Summary | |
---|---|
MULTIPLEXING
Multiplexing channel selector. |
|
OTHER
Place holder for custom channel selectors not part of this enumeration. |
|
REPLICATING
Replicating channel selector. |
Method Summary | |
---|---|
String |
getChannelSelectorClassName()
|
static ChannelSelectorType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ChannelSelectorType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ChannelSelectorType OTHER
public static final ChannelSelectorType REPLICATING
public static final ChannelSelectorType MULTIPLEXING
Method Detail |
---|
public static ChannelSelectorType[] values()
for (ChannelSelectorType c : ChannelSelectorType.values()) System.out.println(c);
public static ChannelSelectorType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String getChannelSelectorClassName()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |