public enum PersonLoginToIdCache extends Enum<PersonLoginToIdCache>
| Enum Constant and Description | 
|---|
| INSTANCESingle instance. | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getIdFromCache(String login,
              PersonDao personDao)Returns person id for person login. | 
| static PersonLoginToIdCache | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static PersonLoginToIdCache[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final PersonLoginToIdCache INSTANCE
public static PersonLoginToIdCache[] values()
for (PersonLoginToIdCache c : PersonLoginToIdCache.values()) System.out.println(c);
public static PersonLoginToIdCache 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 © 2007-2020 Whitestein Technologies. All Rights Reserved.