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