public enum TableConnectionStyle extends java.lang.Enum<TableConnectionStyle>
TableNode.setConnectionStyle(com.mindfusion.diagramming.TableConnectionStyle)
method of the TableNode
class.Enum Constant and Description |
---|
Both
Support both modes.
|
Rows
Connect links to individual rows of the table.
|
Table
Connect links to the table as an integral node.
|
Modifier and Type | Method and Description |
---|---|
static TableConnectionStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TableConnectionStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableConnectionStyle Table
public static final TableConnectionStyle Rows
public static final TableConnectionStyle Both
public static TableConnectionStyle[] values()
for (TableConnectionStyle c : TableConnectionStyle.values()) System.out.println(c);
public static TableConnectionStyle valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null