StreamTokenizer.LowerCaseMode(Boolean) Method

Definition

Determines whether or not word token are automatically lowercased.

[Android.Runtime.Register("lowerCaseMode", "(Z)V", "GetLowerCaseMode_ZHandler")]
public virtual void LowerCaseMode (bool fl);
[<Android.Runtime.Register("lowerCaseMode", "(Z)V", "GetLowerCaseMode_ZHandler")>]
abstract member LowerCaseMode : bool -> unit
override this.LowerCaseMode : bool -> unit

Parameters

fl
Boolean

true indicates that all word tokens should be lowercased.

Attributes

Remarks

Determines whether or not word token are automatically lowercased. If the flag argument is true, then the value in the sval field is lowercased whenever a word token is returned (the ttype field has the value TT_WORD by the nextToken method of this tokenizer.

If the flag argument is false, then the sval field is not modified.

Java documentation for java.io.StreamTokenizer.lowerCaseMode(boolean).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to