SetOverrideType (Java Platform SE 6)
org.omg.CORBA
Class SetOverrideType
java.lang.Object org.omg.CORBA.SetOverrideType
- All Implemented Interfaces:
- Serializable, IDLEntity
The mapping of a CORBA enum tagging
SET_OVERRIDE and ADD_OVERRIDE, which
indicate whether policies should replace the
existing policies of an Object or be added to them.
The method omg.org.CORBA.Object._set_policy_override takes
either SetOverrideType.SET_OVERRIDE or
SetOverrideType.ADD_OVERRIDE as its second argument.
The method _set_policy_override
creates a new Object initialized with the
Policy objects supplied as the first argument. If the
second argument is ADD_OVERRIDE, the new policies
are added to those of the Object instance that is
calling the _set_policy_override method. If
SET_OVERRIDE is given instead, the existing policies
are replaced with the given ones.
- Since:
- JDK1.2
| Field Summary | |
|---|---|
static int |
_ADD_OVERRIDE
The int constant for the enum value ADD_OVERRIDE. |
static int |
_SET_OVERRIDE
The int constant for the enum value SET_OVERRIDE. |
static SetOverrideType |
ADD_OVERRIDE
The SetOverrideType constant for the enum value ADD_OVERRIDE. |
static SetOverrideType |
SET_OVERRIDE
The SetOverrideType constant for the enum value SET_OVERRIDE. |
| Constructor Summary | |
|---|---|
protected |
SetOverrideType(int _value)
Constructs a SetOverrideType instance from an
int. |
| Method Summary | |
|---|---|
static SetOverrideType |
from_int(int i)
Converts the given int to the corresponding
SetOverrideType instance. |
int |
value()
Retrieves the value of this SetOverrideType instance. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
_SET_OVERRIDE
public static final int _SET_OVERRIDE
- The
intconstant for the enum value SET_OVERRIDE.- See Also:
- Constant Field Values
_ADD_OVERRIDE
public static final int _ADD_OVERRIDE
- The
intconstant for the enum value ADD_OVERRIDE.- See Also:
- Constant Field Values
SET_OVERRIDE
public static final SetOverrideType SET_OVERRIDE
- The
SetOverrideTypeconstant for the enum value SET_OVERRIDE.
ADD_OVERRIDE
public static final SetOverrideType ADD_OVERRIDE
- The
SetOverrideTypeconstant for the enum value ADD_OVERRIDE.
| Constructor Detail |
|---|
SetOverrideType
protected SetOverrideType(int _value)
- Constructs a
SetOverrideTypeinstance from anint.- Parameters:
_value- must be eitherSET_OVERRIDEorADD_OVERRIDE
| Method Detail |
|---|
value
public int value()
- Retrieves the value of this
SetOverrideTypeinstance. - Returns:
- the
intfor thisSetOverrideTypeinstance.
from_int
public static SetOverrideType from_int(int i)
- Converts the given
intto the correspondingSetOverrideTypeinstance. - Parameters:
i- theintto convert; must be eitherSetOverrideType._SET_OVERRIDEorSetOverrideType._ADD_OVERRIDE- Returns:
- the
SetOverrideTypeinstance whose value matches the givenint - Throws:
BAD_PARAM- if the givenintdoes not match the value of anySetOverrideTypeinstance
Submit a bug or feature
For further API reference and developer documentation, see Java SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2015, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.