public enum PortletStatus extends Enum<PortletStatus>
| Enum Constant and Description |
|---|
MANAGED
A portlet is managed by the PortletInvoker when the invoker is able to perform any operation on it.
|
OFFERED
A portlet part of the set of exposed portlets as returned by
PortletInvoker.getPortlets(). |
| Modifier and Type | Method and Description |
|---|---|
static PortletStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PortletStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PortletStatus MANAGED
public static final PortletStatus OFFERED
PortletInvoker.getPortlets().public static PortletStatus[] values()
for (PortletStatus c : PortletStatus.values()) System.out.println(c);
public static PortletStatus 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 © 2003-2021 GateIn. All Rights Reserved.