public static enum ClientStorageService.ClientStorageSource extends Enum<ClientStorageService.ClientStorageSource>
| Enum Constant and Description |
|---|
COOKIE
Source was a cookie.
|
HTML_LOCAL_STORAGE
Source was HTML Local Storage.
|
| Modifier and Type | Method and Description |
|---|---|
static ClientStorageService.ClientStorageSource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClientStorageService.ClientStorageSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientStorageService.ClientStorageSource COOKIE
public static final ClientStorageService.ClientStorageSource HTML_LOCAL_STORAGE
public static ClientStorageService.ClientStorageSource[] values()
for (ClientStorageService.ClientStorageSource c : ClientStorageService.ClientStorageSource.values()) System.out.println(c);
public static ClientStorageService.ClientStorageSource 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 © 1999–2016 Shibboleth Consortium. All rights reserved.