public static enum IOManager.IOMode extends Enum<IOManager.IOMode>
Modifier and Type | Method and Description |
---|---|
boolean |
isSynchronous() |
static IOManager.IOMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IOManager.IOMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IOManager.IOMode SYNC
public static final IOManager.IOMode ASYNC
public static IOManager.IOMode[] values()
for (IOManager.IOMode c : IOManager.IOMode.values()) System.out.println(c);
public static IOManager.IOMode 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 nullpublic boolean isSynchronous()
Copyright © 2014–2019 The Apache Software Foundation. All rights reserved.