public enum RMSecurityProxyType extends java.lang.Enum<RMSecurityProxyType>
Enum Constant and Description |
---|
Full
Delegates security to a proxy object.
|
Inheritance
Inherits security from a parent object.
|
None
No security proxy behavior exists.
|
Modifier and Type | Method and Description |
---|---|
static RMSecurityProxyType |
getInstanceFromInt(int intValue)
Provides the
RMSecurityProxyType instance that corresponds to the given
int value. |
int |
getIntValue()
Returns the integer value associated with this member.
|
static RMSecurityProxyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RMSecurityProxyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RMSecurityProxyType None
public static final RMSecurityProxyType Full
public static final RMSecurityProxyType Inheritance
public static RMSecurityProxyType[] values()
for (RMSecurityProxyType c : RMSecurityProxyType.values()) System.out.println(c);
public static RMSecurityProxyType 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 nullpublic int getIntValue()
int
value.public static RMSecurityProxyType getInstanceFromInt(int intValue)
RMSecurityProxyType
instance that corresponds to the given
int
value.intValue
- the int
value to look up.RMSecurityProxyType
value or null
if no such value
corresponds to the given intValue
parameter.© Copyright IBM Corp. 2010, 2013. All Rights Reserved.