public static enum MimeResponse.Copy extends Enum<MimeResponse.Copy>
MimeResponse.createActionURL(Copy)
,
MimeResponse.createRenderURL(Copy)
Enum Constant and Description |
---|
ALL
Specifies that the public and private render parameters set for
the current request are
be copied to the URL when it is created.
|
NONE
Specifies that no parameters are to be copied when a URL is created.
|
PUBLIC
Specifies that only the public render parameters set for the
current request are be copied to the URL when it is created.
|
Modifier and Type | Method and Description |
---|---|
static MimeResponse.Copy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MimeResponse.Copy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MimeResponse.Copy NONE
public static final MimeResponse.Copy ALL
public static final MimeResponse.Copy PUBLIC
public static MimeResponse.Copy[] values()
for (MimeResponse.Copy c : MimeResponse.Copy.values()) System.out.println(c);
public static MimeResponse.Copy 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 nullJava Portlet 3.0 API Specification. See the Copyright and License provided with this distribution. Use is subject to license terms.