Class CCLegID
-
- All Implemented Interfaces:
DataObject
,Serializable
public class CCLegID extends AbstractFieldsObject
API for CC-DataTypes.LegID. Generated from the following ASN.1 type definition and the adaptations below.LegID ::= CHOICE { sendingSideID LegType, receivingSideID LegType } CC-DataTypes { LegID { @extendible } }
Used as field type by
CCApplyChargingArg
.Used as field type by
CCSendChargingInformationArg
.Used as field type by
CCBCSMEvent
.Used as field type by
CCEventReportBCSMArg
.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CCLegID.Choice
API for CC-DataTypes.LegID.Choice.
-
Field Summary
-
Fields inherited from class com.opencloud.util.AbstractFieldsObject
FIELD_ABSENT, FIELD_UNINITIALISED
-
-
Constructor Summary
Constructors Constructor Description CCLegID()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description CCLegID
clone()
Constructs a copy of this object and everything reachable from it.static CCLegID
copyOf(CCLegID from)
Creates a new object of this type, cloning the values of common fields from the given object of any subclass of the same base type.CCLegID.Choice
getChoice()
Gets the discriminant of the current choice.static FieldAccessor[]
getFieldAccessors()
Gets a new array of the accessors for fields of this type.Map<String,Object>
getFieldsMap(boolean withAbsents)
Gets a Map from :discriminant-name to associated-value.LegType
getReceivingSideID()
Gets the value of the receivingSideID choice.LegType
getSendingSideID()
Gets the value of the sendingSideID choice.boolean
isReceivingSideIDChosen()
Tests whether the choice is receivingSideID.boolean
isSendingSideIDChosen()
Tests whether the choice is sendingSideID.protected void
setChoice(CCLegID.Choice arg)
Sets the discriminant of the current choice.void
setReadOnly()
Sets this and all its fields to be immutable.CCLegID
setReceivingSideID(LegType value)
Sets the value of the receivingSideID choice.CCLegID
setSendingSideID(LegType value)
Sets the value of the sendingSideID choice.-
Methods inherited from class com.opencloud.util.AbstractFieldsObject
equals, hashCode, toString
-
Methods inherited from class com.opencloud.util.AbstractDataObject
checkModify, isReadOnly
-
-
-
-
Method Detail
-
clone
public CCLegID clone()
Constructs a copy of this object and everything reachable from it.- Specified by:
clone
in interfaceDataObject
- Specified by:
clone
in classAbstractDataObject
- Returns:
- copy of object
-
copyOf
public static CCLegID copyOf(CCLegID from)
Creates a new object of this type, cloning the values of common fields from the given object of any subclass of the same base type.- Parameters:
from
- the object from which to copy- Returns:
- CCLegID
-
getChoice
public CCLegID.Choice getChoice()
Gets the discriminant of the current choice.- Returns:
- the current discriminant
-
getFieldAccessors
public static FieldAccessor[] getFieldAccessors()
Gets a new array of the accessors for fields of this type.- Returns:
- FieldAccessor[]
-
getFieldsMap
public Map<String,Object> getFieldsMap(boolean withAbsents)
Gets a Map from :discriminant-name to associated-value. For a value of primitive type, the value is boxed. If choice is not set, returns a map from : to AbstractFieldsObject.FIELD_UNINITIALISED.- Specified by:
getFieldsMap
in classAbstractFieldsObject
- Parameters:
withAbsents
- ignored, as value cannot be optional- Returns:
- Map from :discriminant-name to associated-value
-
getReceivingSideID
public LegType getReceivingSideID()
Gets the value of the receivingSideID choice.- Returns:
- value of the choice, if choice is receivingSideID, else null
-
getSendingSideID
public LegType getSendingSideID()
Gets the value of the sendingSideID choice.- Returns:
- value of the choice, if choice is sendingSideID, else null
-
isReceivingSideIDChosen
public boolean isReceivingSideIDChosen()
Tests whether the choice is receivingSideID.- Returns:
- true if chosen, false if not
-
isSendingSideIDChosen
public boolean isSendingSideIDChosen()
Tests whether the choice is sendingSideID.- Returns:
- true if chosen, false if not
-
setChoice
protected void setChoice(CCLegID.Choice arg)
Sets the discriminant of the current choice.- Parameters:
arg
- the new discriminant
-
setReadOnly
public void setReadOnly()
Sets this and all its fields to be immutable.- Specified by:
setReadOnly
in interfaceDataObject
- Overrides:
setReadOnly
in classAbstractDataObject
-
setReceivingSideID
public CCLegID setReceivingSideID(LegType value) throws IllegalStateException, NullPointerException
Sets the value of the receivingSideID choice.- Parameters:
value
- the new value for the choice- Returns:
- this
- Throws:
IllegalStateException
- if this instance has been marked as read-onlyNullPointerException
- if the given value is null
-
setSendingSideID
public CCLegID setSendingSideID(LegType value) throws IllegalStateException, NullPointerException
Sets the value of the sendingSideID choice.- Parameters:
value
- the new value for the choice- Returns:
- this
- Throws:
IllegalStateException
- if this instance has been marked as read-onlyNullPointerException
- if the given value is null
-
-