public enum ExceptionContext extends Enum<ExceptionContext>
| Enum Constant and Description |
|---|
BusCore
Chamadas ao núcleo do barramento
|
Local
Chamadas locais
|
LoginByCertificate
Login por chave privada
|
LoginByPassword
Login por senha
|
Service
Chamadas a serviços
|
| Modifier and Type | Method and Description |
|---|---|
static ExceptionContext |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExceptionContext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExceptionContext LoginByPassword
public static final ExceptionContext LoginByCertificate
public static final ExceptionContext BusCore
public static final ExceptionContext Service
public static final ExceptionContext Local
public static ExceptionContext[] values()
for (ExceptionContext c : ExceptionContext.values()) System.out.println(c);
public static ExceptionContext 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 © 2017. All rights reserved.