public static enum VCard.Kind extends java.lang.Enum<VCard.Kind>
Enum Constant and Description |
---|
group
for a vCard representing a group of persons or entities.
|
individual
for a vCard representing a single person or entity.
|
location
for a named geographical place
|
org
for a vCard representing an organization.
|
Modifier and Type | Method and Description |
---|---|
static VCard.Kind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VCard.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VCard.Kind group
public static final VCard.Kind individual
public static final VCard.Kind location
public static final VCard.Kind org
public static VCard.Kind[] values()
for (VCard.Kind c : VCard.Kind.values()) System.out.println(c);
public static VCard.Kind 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 nullCopyright © 2021. All Rights Reserved.