TtsSpan.CardinalBuilder


public static class TtsSpan.CardinalBuilder
extends SemioticClassBuilder<TtsSpan.CardinalBuilder>



A builder for TtsSpans of type TtsSpan.TYPE_CARDINAL.

Summary

Public constructors

CardinalBuilder()

Creates a builder for a TtsSpan of type TtsSpan.TYPE_CARDINAL.

CardinalBuilder(String number)

Creates a TtsSpan of type TtsSpan.TYPE_CARDINAL and sets the TtsSpan.ARG_NUMBER argument.

CardinalBuilder(long number)

Creates a TtsSpan of type TtsSpan.TYPE_CARDINAL and sets the TtsSpan.ARG_NUMBER argument.

Public methods

TtsSpan.CardinalBuilder setNumber(long number)

Convenience method that converts the number to a String and set it to the value for TtsSpan.ARG_NUMBER.

TtsSpan.CardinalBuilder setNumber(String number)

Sets the TtsSpan.ARG_NUMBER argument.

Inherited methods

C setAnimacy(String animacy)

Sets the animacy information for this instance.

C setCase(String grammaticalCase)

Sets the grammatical case information for this instance.

C setGender(String gender)

Sets the gender information for this instance.

C setMultiplicity(String multiplicity)

Sets the multiplicity information for this instance.

TtsSpan build()

Returns a TtsSpan built from the parameters set by the setter methods.

C setIntArgument(String arg, int value)

Sets an argument to an int value.

C setLongArgument(String arg, long value)

Sets an argument to a long value.

C setStringArgument(String arg, String value)

Sets an argument to a string value.

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Public constructors

CardinalBuilder

Added in API level 21
public CardinalBuilder ()

Creates a builder for a TtsSpan of type TtsSpan.TYPE_CARDINAL.

CardinalBuilder

Added in API level 21
public CardinalBuilder (String number)

Creates a TtsSpan of type TtsSpan.TYPE_CARDINAL and sets the TtsSpan.ARG_NUMBER argument.

Parameters
number String: The number to synthesize.

See also:

CardinalBuilder

Added in API level 21
public CardinalBuilder (long number)

Creates a TtsSpan of type TtsSpan.TYPE_CARDINAL and sets the TtsSpan.ARG_NUMBER argument.

Parameters
number long: The number to synthesize.

See also:

Public methods

setNumber

Added in API level 21
public TtsSpan.CardinalBuilder setNumber (long number)

Convenience method that converts the number to a String and set it to the value for TtsSpan.ARG_NUMBER.

Parameters
number long: The number that will be synthesized.

Returns
TtsSpan.CardinalBuilder This instance.

setNumber

Added in API level 21
public TtsSpan.CardinalBuilder setNumber (String number)

Sets the TtsSpan.ARG_NUMBER argument.

Parameters
number String: A non-empty string of digits with an optional leading + or -.

Returns
TtsSpan.CardinalBuilder This instance.