public enum IContactFilter extends java.lang.Enum<IContactFilter>
| Enum Constant and Description |
|---|
HasAddress |
HasEmail |
HasPhone |
Unknown |
| Modifier and Type | Method and Description |
|---|---|
static IContactFilter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IContactFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IContactFilter HasPhone
public static final IContactFilter HasEmail
public static final IContactFilter HasAddress
public static final IContactFilter Unknown
public static IContactFilter[] values()
for (IContactFilter c : IContactFilter.values()) System.out.println(c);
public static IContactFilter 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 null