public enum PublishModel extends java.lang.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(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null