public static enum VennDiagramPanel.VennDiagramType extends Enum<VennDiagramPanel.VennDiagramType>
| Enum Constant and Description |
|---|
FOUR_WAY |
ONE_WAY |
THREE_WAY |
TWO_WAY |
| Modifier and Type | Method and Description |
|---|---|
static VennDiagramPanel.VennDiagramType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VennDiagramPanel.VennDiagramType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VennDiagramPanel.VennDiagramType ONE_WAY
public static final VennDiagramPanel.VennDiagramType TWO_WAY
public static final VennDiagramPanel.VennDiagramType THREE_WAY
public static final VennDiagramPanel.VennDiagramType FOUR_WAY
public static VennDiagramPanel.VennDiagramType[] values()
for (VennDiagramPanel.VennDiagramType c : VennDiagramPanel.VennDiagramType.values()) System.out.println(c);
public static VennDiagramPanel.VennDiagramType 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 nullCopyright © 2014. All rights reserved.