public static enum AsyncSelector.Interests extends Enum<AsyncSelector.Interests>
SelectionKey interestops.| Modifier and Type | Method and Description |
|---|---|
static AsyncSelector.Interests |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AsyncSelector.Interests[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AsyncSelector.Interests READ
public static final AsyncSelector.Interests WRITE
public static final AsyncSelector.Interests CONNECT
public static final AsyncSelector.Interests ACCEPT
public static AsyncSelector.Interests[] values()
for (AsyncSelector.Interests c : AsyncSelector.Interests.values()) System.out.println(c);
public static AsyncSelector.Interests 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 © 2026. All rights reserved.