Uses of Class
com.opencloud.slee.resources.in.datatypes.sms.SMSAddress
-
Packages that use SMSAddress Package Description com.opencloud.slee.resources.in.datatypes.sms Defines classes to represent some short message service (SMS) types for which their ASN.1 specifications say merely OCTET STRING, and for which standards define the layout of bit-fields within the octet strings. -
-
Uses of SMSAddress in com.opencloud.slee.resources.in.datatypes.sms
Fields in com.opencloud.slee.resources.in.datatypes.sms with type parameters of type SMSAddress Modifier and Type Field Description static BCDStringCodec<SMSAddress>
SMSAddress. ADDRESS_CODEC_BCD
BCD string codec for field Address.static GSM7PACKEDStringCodec<SMSAddress>
SMSAddress. ADDRESS_CODEC_GSM7PACKED
GSM7PACKED string codec for field Address.Methods in com.opencloud.slee.resources.in.datatypes.sms that return SMSAddress Modifier and Type Method Description SMSAddress
SMSAddress. clone()
Constructs a copy of this object and everything reachable from it.static SMSAddress
SMSAddress. copyOf(SMSAddress 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.SMSAddress
SMSCommand. getDestinationAddress()
Gets the value of the destination address.SMSAddress
SMSSubmit. getDestinationAddress()
Gets the value of the address of the destination SME.SMSAddress
SMSDeliver. getOriginatingAddress()
Gets the value of address of the originating SME.SMSAddress
SMSStatusReport. getRecipientAddress()
Gets the value of recipient of the previously submitted mobile originated short message.SMSAddress
SMSAddress. setAddress(String value)
Sets the value of the address.SMSAddress
SMSAddress. setAddress(String value, StringCodec<SMSAddress> codec)
Sets the value of the address using the given codec.SMSAddress
SMSAddress. setAddressEncoded(EncodedStringWithIndicators encoded)
Sets the encoded value of the address to a clone of the given EncodedStringIndicators.SMSAddress
SMSAddress. setNature(SMSAddress.Nature value)
Sets the value of the nature of address indicator.SMSAddress
SMSAddress. setNumberingPlan(SMSAddress.NumberingPlan value)
Sets the value of the numbering plan indicator.Methods in com.opencloud.slee.resources.in.datatypes.sms that return types with arguments of type SMSAddress Modifier and Type Method Description StringCodec<SMSAddress>
SMSAddress. getAddressCodec()
Gets the codec used for field Address.Methods in com.opencloud.slee.resources.in.datatypes.sms with parameters of type SMSAddress Modifier and Type Method Description static SMSAddress
SMSAddress. copyOf(SMSAddress 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.SMSCommand
SMSCommand. setDestinationAddress(SMSAddress value)
Sets the value of the destination address.SMSSubmit
SMSSubmit. setDestinationAddress(SMSAddress value)
Sets the value of the address of the destination SME.SMSDeliver
SMSDeliver. setOriginatingAddress(SMSAddress value)
Sets the value of address of the originating SME.SMSStatusReport
SMSStatusReport. setRecipientAddress(SMSAddress value)
Sets the value of recipient of the previously submitted mobile originated short message.Method parameters in com.opencloud.slee.resources.in.datatypes.sms with type arguments of type SMSAddress Modifier and Type Method Description String
SMSAddress. getAddress(StringCodec<SMSAddress> codec)
Gets the value of the address using the given codec.SMSAddress
SMSAddress. setAddress(String value, StringCodec<SMSAddress> codec)
Sets the value of the address using the given codec.Constructor parameters in com.opencloud.slee.resources.in.datatypes.sms with type arguments of type SMSAddress Constructor Description SMSAddress(SMSAddress.Nature nature, SMSAddress.NumberingPlan numberingPlan, String address, StringCodec<SMSAddress> Address_codec)
Constructs a new SMSAddress object from given arguments, using the given codecs for encoding fields of type String.
-