Package org.apache.poi.sl.usermodel
Enum TableCell.BorderEdge
- java.lang.Object
-
- java.lang.Enum<TableCell.BorderEdge>
-
- org.apache.poi.sl.usermodel.TableCell.BorderEdge
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TableCell.BorderEdge>
- Enclosing interface:
- TableCell<S extends Shape<S,P>,P extends TextParagraph<S,P,? extends TextRun>>
public static enum TableCell.BorderEdge extends java.lang.Enum<TableCell.BorderEdge>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TableCell.BorderEdge
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TableCell.BorderEdge[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
bottom
public static final TableCell.BorderEdge bottom
-
left
public static final TableCell.BorderEdge left
-
top
public static final TableCell.BorderEdge top
-
right
public static final TableCell.BorderEdge right
-
-
Method Detail
-
values
public static TableCell.BorderEdge[] 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 (TableCell.BorderEdge c : TableCell.BorderEdge.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TableCell.BorderEdge 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 namejava.lang.NullPointerException
- if the argument is null
-
-