Package org.apache.juneau.html
Enum Class AsideFloat
- All Implemented Interfaces:
- Serializable,- Comparable<AsideFloat>,- Constable
Identifies possible float values for 
HtmlDocSerializer.Builder.asideFloat(AsideFloat).
 See Also:
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum Constants
- 
Method SummaryModifier and TypeMethodDescriptionbooleanis(AsideFloat value) Returnstrue if value matches this enum.booleanisAny(AsideFloat... values) Returnstrue if any of the values match this enum.static AsideFloatReturns the enum constant of this class with the specified name.static AsideFloat[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
LEFTFloat right of main contents.
- 
RIGHTFloat left of main contents.
- 
TOPFloat above main contents.
- 
BOTTOMFloat below main contents.
- 
DEFAULTDefault value (defaults toLEFT
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
isReturnstrue if value matches this enum.- Parameters:
- value- The value to check against.
- Returns:
- true if value matches this enum.
 
- 
isAnyReturnstrue if any of the values match this enum.- Parameters:
- values- The values to check against.
- Returns:
- true if value matches this enum.
 
 
-