KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > swing > text > MaskFormatter

javax.swing.text
Class MaskFormatter

java.lang.Object
  extended by javax.swing.JFormattedTextField.AbstractFormatter
      extended by javax.swing.text.DefaultFormatter
          extended by javax.swing.text.MaskFormatter
All Implemented Interfaces:
Serializable, Cloneable
See Also:
Top Examples, Source Code, XMLEncoder

public String getInvalidCharacters()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String getMask()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String getPlaceholder()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public char getPlaceholderCharacter()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String getValidCharacters()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean getValueContainsLiteralCharacters()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void install(JFormattedTextField ftf)
See Also:
DefaultFormatter
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public MaskFormatter()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public MaskFormatter(String mask)
              throws ParseException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setInvalidCharacters(String invalidCharacters)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setMask(String mask)
             throws ParseException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setPlaceholder(String placeholder)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setPlaceholderCharacter(char placeholder)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setValidCharacters(String validCharacters)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setValueContainsLiteralCharacters(boolean containsLiteralChars)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Object stringToValue(String value)
                     throws ParseException
See Also:
setValueContainsLiteralCharacters(boolean), DefaultFormatter
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String valueToString(Object value)
                     throws ParseException
See Also:
setValueContainsLiteralCharacters(boolean), DefaultFormatter
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags