public static enum Transport.ThreadingModel extends Enum<Transport.ThreadingModel>
| Enum Constant and Description |
|---|
DEDICATED_THREADS |
SAME_THREAD |
SINGLE_THREAD |
| Modifier and Type | Method and Description |
|---|---|
static Transport.ThreadingModel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Transport.ThreadingModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transport.ThreadingModel SAME_THREAD
public static final Transport.ThreadingModel SINGLE_THREAD
public static final Transport.ThreadingModel DEDICATED_THREADS
public static Transport.ThreadingModel[] values()
for (Transport.ThreadingModel c : Transport.ThreadingModel.values()) System.out.println(c);
public static Transport.ThreadingModel 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. All rights reserved.