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