public enum Repository extends Enum<Repository>
Enum Constant and Description |
---|
JBPM_PLAYGROUND |
Modifier and Type | Method and Description |
---|---|
String |
getUrl() |
static Repository |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Repository[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Repository JBPM_PLAYGROUND
public static Repository[] values()
for (Repository c : Repository.values()) System.out.println(c);
public static Repository 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 nullpublic String getUrl()
Copyright © 2001–2020 JBoss by Red Hat. All rights reserved.