public enum EpollMode extends Enum<EpollMode>
| Enum Constant and Description | 
|---|
| EDGE_TRIGGEREDUse  EPOLLET(edge-triggered). | 
| LEVEL_TRIGGEREDDo not use  EPOLLET(level-triggered). | 
| Modifier and Type | Method and Description | 
|---|---|
| static EpollMode | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static EpollMode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final EpollMode EDGE_TRIGGERED
EPOLLET (edge-triggered).public static final EpollMode LEVEL_TRIGGERED
EPOLLET (level-triggered).public static EpollMode[] values()
for (EpollMode c : EpollMode.values()) System.out.println(c);
public static EpollMode 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 © 2008–2015 The Netty Project. All rights reserved.