public enum LookingFor extends Enum<LookingFor> implements Enum.EnumKey
| Enum Constant and Description |
|---|
ACTIVITY_PARTNERS |
DATING
Interested in dating.
|
FRIENDS
Looking for friends.
|
NETWORKING
Just want to network.
|
RANDOM |
RELATIONSHIP
Looking for a relationship.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getDisplayValue() |
String |
toString() |
static LookingFor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LookingFor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LookingFor DATING
public static final LookingFor FRIENDS
public static final LookingFor RELATIONSHIP
public static final LookingFor NETWORKING
public static final LookingFor ACTIVITY_PARTNERS
public static final LookingFor RANDOM
public static LookingFor[] values()
for (LookingFor c : LookingFor.values()) System.out.println(c);
public static LookingFor 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 String toString()
toString in class Enum<LookingFor>Enum.toString()public String getDisplayValue()
getDisplayValue in interface Enum.EnumKeyEnum.EnumKey.getDisplayValue()Copyright © 2007-2012. All Rights Reserved.