public static enum Multimap.ListType extends java.lang.Enum<Multimap.ListType>
Enum Constant and Description |
---|
LINKED
Aka LinkedList
|
REGULAR
Aka ArrayList
|
THREAD_SAFE
Aka CopyOnWriteArrayList
|
Modifier and Type | Method and Description |
---|---|
static Multimap.ListType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Multimap.ListType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Multimap.ListType REGULAR
public static final Multimap.ListType THREAD_SAFE
public static final Multimap.ListType LINKED
public static Multimap.ListType[] values()
for (Multimap.ListType c : Multimap.ListType.values()) System.out.println(c);
public static Multimap.ListType 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 nullAvailable under the Apache License, Version 2.0 - Copyright © 2012-2016 greenrobot.org. All Rights Reserved.