public static enum InputStreamFactory.StorageMode extends Enum<InputStreamFactory.StorageMode>
| Enum Constant and Description |
|---|
FREE |
MEMORY |
OTHER |
PERSISTENT |
| Modifier and Type | Method and Description |
|---|---|
static InputStreamFactory.StorageMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InputStreamFactory.StorageMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputStreamFactory.StorageMode MEMORY
public static final InputStreamFactory.StorageMode PERSISTENT
public static final InputStreamFactory.StorageMode FREE
public static final InputStreamFactory.StorageMode OTHER
public static InputStreamFactory.StorageMode[] values()
for (InputStreamFactory.StorageMode c : InputStreamFactory.StorageMode.values()) System.out.println(c);
public static InputStreamFactory.StorageMode 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 © 2017 JBoss by Red Hat. All rights reserved.