VALUE - this value type (used to facilitate operation chaining)public interface MutableCharacterValue<VALUE extends MutableCharacterValue<VALUE>>
char property value| Modifier and Type | Method and Description |
|---|---|
char |
charPostDecrement()
Decrement the scalar value of this object then return the original value
prior to decrementing
|
char |
charPostIncrement()
Increment the scalar value of this object then return the original value
prior to incrementing
|
VALUE |
setScalar(char aValue)
Set this property to the specified
char value and answer this
object (facilitates chaining) |
char charPostDecrement() throws UnsupportedOperationException, ArithmeticException, IllegalArgumentException
UnsupportedOperationException - if this object's value cannot be changedIllegalArgumentException - if the new value was incommensurate with this object's
specificationArithmeticException - the new numeric value was incompatible with with algebraic
interpretation of this objectchar charPostIncrement() throws UnsupportedOperationException, ArithmeticException, IllegalArgumentException
UnsupportedOperationException - if this object's value cannot be changedIllegalArgumentException - if the new value was incommensurate with this object's
specificationArithmeticException - the new numeric value was incompatible with with algebraic
interpretation of this objectVALUE setScalar(char aValue) throws UnsupportedOperationException, IllegalArgumentException, ArithmeticException
char value and answer this
object (facilitates chaining)aValue - a char valueUnsupportedOperationException - if this object's value cannot be changedIllegalArgumentException - if the specified value was incommensurate with this object's
specificationArithmeticException - the numeric value provided was incompatible with with algebraic
interpretation of this objectCopyright © 2006-2012 Ware-Squared Software Development. All Rights Reserved.