- java.lang.Object
- 
- java.lang.Enum<HTMLEditorSkin.Command>
- 
- javafx.scene.web.HTMLEditorSkin.Command
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<HTMLEditorSkin.Command>
 - Enclosing class:
- HTMLEditorSkin
 
 public static enum HTMLEditorSkin.Command extends Enum<HTMLEditorSkin.Command> Represents commands that can be passed into the HTMLEditor web engine.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ALIGN_CENTERALIGN_JUSTIFYALIGN_LEFTALIGN_RIGHTBACKGROUND_COLORBOLDBULLETSCOPYCUTFONT_FAMILYFONT_SIZEFOREGROUND_COLORFORMATINDENTINSERT_HORIZONTAL_RULEINSERT_NEW_LINEINSERT_TABITALICNUMBERSOUTDENTPASTEREDOSTRIKETHROUGHSTYLEWITHCSSUNDERLINEUNDO
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCommand()static HTMLEditorSkin.CommandvalueOf(String name)Returns the enum constant of this type with the specified name.static HTMLEditorSkin.Command[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
CUTpublic static final HTMLEditorSkin.Command CUT 
 - 
COPYpublic static final HTMLEditorSkin.Command COPY 
 - 
PASTEpublic static final HTMLEditorSkin.Command PASTE 
 - 
UNDOpublic static final HTMLEditorSkin.Command UNDO 
 - 
REDOpublic static final HTMLEditorSkin.Command REDO 
 - 
INSERT_HORIZONTAL_RULEpublic static final HTMLEditorSkin.Command INSERT_HORIZONTAL_RULE 
 - 
ALIGN_LEFTpublic static final HTMLEditorSkin.Command ALIGN_LEFT 
 - 
ALIGN_CENTERpublic static final HTMLEditorSkin.Command ALIGN_CENTER 
 - 
ALIGN_RIGHTpublic static final HTMLEditorSkin.Command ALIGN_RIGHT 
 - 
ALIGN_JUSTIFYpublic static final HTMLEditorSkin.Command ALIGN_JUSTIFY 
 - 
BULLETSpublic static final HTMLEditorSkin.Command BULLETS 
 - 
NUMBERSpublic static final HTMLEditorSkin.Command NUMBERS 
 - 
INDENTpublic static final HTMLEditorSkin.Command INDENT 
 - 
OUTDENTpublic static final HTMLEditorSkin.Command OUTDENT 
 - 
FORMATpublic static final HTMLEditorSkin.Command FORMAT 
 - 
FONT_FAMILYpublic static final HTMLEditorSkin.Command FONT_FAMILY 
 - 
FONT_SIZEpublic static final HTMLEditorSkin.Command FONT_SIZE 
 - 
BOLDpublic static final HTMLEditorSkin.Command BOLD 
 - 
ITALICpublic static final HTMLEditorSkin.Command ITALIC 
 - 
UNDERLINEpublic static final HTMLEditorSkin.Command UNDERLINE 
 - 
STRIKETHROUGHpublic static final HTMLEditorSkin.Command STRIKETHROUGH 
 - 
FOREGROUND_COLORpublic static final HTMLEditorSkin.Command FOREGROUND_COLOR 
 - 
BACKGROUND_COLORpublic static final HTMLEditorSkin.Command BACKGROUND_COLOR 
 - 
STYLEWITHCSSpublic static final HTMLEditorSkin.Command STYLEWITHCSS 
 - 
INSERT_NEW_LINEpublic static final HTMLEditorSkin.Command INSERT_NEW_LINE 
 - 
INSERT_TABpublic static final HTMLEditorSkin.Command INSERT_TAB 
 
- 
 - 
Method Detail- 
valuespublic static HTMLEditorSkin.Command[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (HTMLEditorSkin.Command c : HTMLEditorSkin.Command.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static HTMLEditorSkin.Command valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
getCommandpublic String getCommand() 
 
- 
 
-