public enum UsageMode extends Enum<UsageMode>
| Enum Constant and Description |
|---|
PERSONAL
Personal usage mode suggests that the user is using its own copy of moskito inspect without interference with others.
|
SHARED
Multiple users are sharing one copy of moskito inspect.
|
| Modifier and Type | Method and Description |
|---|---|
static UsageMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UsageMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UsageMode PERSONAL
public static final UsageMode SHARED
public static UsageMode[] values()
for (UsageMode c : UsageMode.values()) System.out.println(c);
public static UsageMode 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 © 2010-2015 anotheria.net. All Rights Reserved.