Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | Static Public Member Functions | Public Attributes | List of all members
io.flutter.embedding.engine.systemchannels.TextInputChannel.TextInputType Enum Reference

Public Member Functions

 TextInputType (@NonNull String encodedName)
 

Static Public Member Functions

static TextInputType fromValue (@NonNull String encodedName) throws NoSuchFieldException
 

Public Attributes

 TEXT =("TextInputType.text")
 
 DATETIME =("TextInputType.datetime")
 
 NAME =("TextInputType.name")
 
 POSTAL_ADDRESS =("TextInputType.address")
 
 NUMBER =("TextInputType.number")
 
 PHONE =("TextInputType.phone")
 
 MULTILINE =("TextInputType.multiline")
 
 EMAIL_ADDRESS =("TextInputType.emailAddress")
 
 URL =("TextInputType.url")
 
 VISIBLE_PASSWORD =("TextInputType.visiblePassword")
 
 NONE =("TextInputType.none")
 

Detailed Description

Types of text input.

Definition at line 709 of file TextInputChannel.java.

Constructor & Destructor Documentation

◆ TextInputType()

io.flutter.embedding.engine.systemchannels.TextInputChannel.TextInputType.TextInputType ( @NonNull String  encodedName)
inline

Definition at line 733 of file TextInputChannel.java.

733 {
734 this.encodedName = encodedName;
735 }

Member Function Documentation

◆ fromValue()

static TextInputType io.flutter.embedding.engine.systemchannels.TextInputChannel.TextInputType.fromValue ( @NonNull String  encodedName) throws NoSuchFieldException
inlinestatic

Definition at line 722 of file TextInputChannel.java.

722 {
723 for (TextInputType textInputType : TextInputType.values()) {
724 if (textInputType.encodedName.equals(encodedName)) {
725 return textInputType;
726 }
727 }
728 throw new NoSuchFieldException("No such TextInputType: " + encodedName);
729 }

Member Data Documentation

◆ DATETIME

io.flutter.embedding.engine.systemchannels.TextInputChannel.TextInputType.DATETIME =("TextInputType.datetime")

Definition at line 711 of file TextInputChannel.java.

◆ EMAIL_ADDRESS

io.flutter.embedding.engine.systemchannels.TextInputChannel.TextInputType.EMAIL_ADDRESS =("TextInputType.emailAddress")

Definition at line 717 of file TextInputChannel.java.

◆ MULTILINE

io.flutter.embedding.engine.systemchannels.TextInputChannel.TextInputType.MULTILINE =("TextInputType.multiline")

Definition at line 716 of file TextInputChannel.java.

◆ NAME

io.flutter.embedding.engine.systemchannels.TextInputChannel.TextInputType.NAME =("TextInputType.name")

Definition at line 712 of file TextInputChannel.java.

◆ NONE

io.flutter.embedding.engine.systemchannels.TextInputChannel.TextInputType.NONE =("TextInputType.none")

Definition at line 720 of file TextInputChannel.java.

◆ NUMBER

io.flutter.embedding.engine.systemchannels.TextInputChannel.TextInputType.NUMBER =("TextInputType.number")

Definition at line 714 of file TextInputChannel.java.

◆ PHONE

io.flutter.embedding.engine.systemchannels.TextInputChannel.TextInputType.PHONE =("TextInputType.phone")

Definition at line 715 of file TextInputChannel.java.

◆ POSTAL_ADDRESS

io.flutter.embedding.engine.systemchannels.TextInputChannel.TextInputType.POSTAL_ADDRESS =("TextInputType.address")

Definition at line 713 of file TextInputChannel.java.

◆ TEXT

io.flutter.embedding.engine.systemchannels.TextInputChannel.TextInputType.TEXT =("TextInputType.text")

Definition at line 710 of file TextInputChannel.java.

◆ URL

io.flutter.embedding.engine.systemchannels.TextInputChannel.TextInputType.URL =("TextInputType.url")

Definition at line 718 of file TextInputChannel.java.

◆ VISIBLE_PASSWORD

io.flutter.embedding.engine.systemchannels.TextInputChannel.TextInputType.VISIBLE_PASSWORD =("TextInputType.visiblePassword")

Definition at line 719 of file TextInputChannel.java.


The documentation for this enum was generated from the following file: