public enum InterestsType extends Enum<InterestsType>
| Enum Constant and Description |
|---|
ADVENTURE |
FLIRT |
MAILFRIENDSHIP |
SOLIDRELATIONSHIP |
SPORTRELATIONSHIP |
| Modifier and Type | Method and Description |
|---|---|
static InterestsType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InterestsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterestsType MAILFRIENDSHIP
public static final InterestsType FLIRT
public static final InterestsType SOLIDRELATIONSHIP
public static final InterestsType SPORTRELATIONSHIP
public static final InterestsType ADVENTURE
public static InterestsType[] values()
for (InterestsType c : InterestsType.values()) System.out.println(c);
public static InterestsType 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 © 2015–2016 Alpha Ro Group UG (haftungsbeschrÀngt). All rights reserved.