Package cz.vutbr.fit.layout.model
Enum Box.Type
- java.lang.Object
-
- java.lang.Enum<Box.Type>
-
- cz.vutbr.fit.layout.model.Box.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<Box.Type>
- Enclosing interface:
- Box
public static enum Box.Type extends Enum<Box.Type>
The type of the box.- Author:
- burgetr
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ELEMENT
Boxes produced by a DOM elementREPLACED_CONTENT
Replaced boxes (images, objects, etc.)TEXT_CONTENT
Text boxes (produced by DOM text node
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Box.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static Box.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Method Detail
-
values
public static Box.Type[] 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 (Box.Type c : Box.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Box.Type 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 nameNullPointerException
- if the argument is null
-
-