Enum FlexWrap
- java.lang.Object
- 
- java.lang.Enum<FlexWrap>
- 
- com.inductiveautomation.perspective.designer.styles.attributes.flex.FlexWrap
 
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description nowrapwrapwrapReverse
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetReverse()Returns the reverse value.booleanisReversable()Checks if the value is reversablebooleanisReversed()Checks if the value is a reversed valuejava.lang.StringtoString()static FlexWrapvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FlexWrap[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Method Detail- 
valuespublic static FlexWrap[] 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 (FlexWrap c : FlexWrap.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static FlexWrap valueOf(java.lang.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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
getReversepublic java.lang.String getReverse() Description copied from interface:ReverseReturns the reverse value. If there is none, return null- Specified by:
- getReversein interface- Reverse
- Returns:
- string of reversed value
 
 - 
isReversedpublic boolean isReversed() Description copied from interface:ReverseChecks if the value is a reversed value- Specified by:
- isReversedin interface- Reverse
- Returns:
- boolean
 
 - 
isReversablepublic boolean isReversable() Description copied from interface:ReverseChecks if the value is reversable- Specified by:
- isReversablein interface- Reverse
- Returns:
- boolean
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Enum<FlexWrap>
 
 
- 
 
-