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