public static enum MultimapSet.SetType extends java.lang.Enum<MultimapSet.SetType>
| Enum Constant and Description |
|---|
REGULAR
Aka HashSet
|
THREAD_SAFE
Aka CopyOnWriteArraySet
|
| Modifier and Type | Method and Description |
|---|---|
static MultimapSet.SetType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MultimapSet.SetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultimapSet.SetType REGULAR
public static final MultimapSet.SetType THREAD_SAFE
public static MultimapSet.SetType[] values()
for (MultimapSet.SetType c : MultimapSet.SetType.values()) System.out.println(c);
public static MultimapSet.SetType 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-2020 greenrobot.org. All Rights Reserved.