public enum BindMode extends Enum<BindMode>
| Enum Constant and Description |
|---|
READ_ONLY |
READ_WRITE |
| Modifier and Type | Field and Description |
|---|---|
com.github.dockerjava.api.model.AccessMode |
accessMode |
| Modifier and Type | Method and Description |
|---|---|
static BindMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BindMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BindMode READ_ONLY
public static final BindMode READ_WRITE
public static BindMode[] values()
for (BindMode c : BindMode.values()) System.out.println(c);
public static BindMode 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 © 2018 JBoss by Red Hat. All rights reserved.