public enum PublishModel extends Enum<PublishModel>
ConfigureForm.setPublishModel(PublishModel).| Enum Constant and Description |
|---|
open
Anyone may publish
|
publishers
Only publishers may publish
|
subscribers
Only subscribers may publish
|
| Modifier and Type | Method and Description |
|---|---|
static PublishModel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PublishModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PublishModel publishers
public static final PublishModel subscribers
public static final PublishModel open
public static PublishModel[] values()
for (PublishModel c : PublishModel.values()) System.out.println(c);
public static PublishModel 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 null