public static enum CyTable.Mutability extends Enum<CyTable.Mutability>
Enum Constant and Description |
---|
IMMUTABLE_DUE_TO_VIRT_COLUMN_REFERENCES
The table can not be deleted because it currently has virtual
CyColumn s referencing it. |
MUTABLE
The table can be deleted.
|
PERMANENTLY_IMMUTABLE
The table can not be deleted.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static CyTable.Mutability |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CyTable.Mutability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CyTable.Mutability MUTABLE
public static final CyTable.Mutability PERMANENTLY_IMMUTABLE
public static final CyTable.Mutability IMMUTABLE_DUE_TO_VIRT_COLUMN_REFERENCES
CyColumn
s referencing it.public static CyTable.Mutability[] values()
for (CyTable.Mutability c : CyTable.Mutability.values()) System.out.println(c);
public static CyTable.Mutability valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic final String toString()
toString
in class Enum<CyTable.Mutability>
Copyright 2011-2015 Cytoscape Consortium. All rights reserved.