public static enum SimEntity.UnknownOperationPolicy extends Enum<SimEntity.UnknownOperationPolicy>
SimEntity.doOperation(double, Req).| Enum Constant and Description |
|---|
ERROR
Request for unknown operations lead to an error (exception).
|
IGNORE
Requests for unknown operations are silently ignored.
|
LOG_FINE
Requests for unknown operations are logged as 'FINE'.
|
LOG_INFO
Requests for unknown operations are logged as info.
|
LOG_WARNING
Requests for unknown operations are logged as warning.
|
REPORT
Requests for unknown operations are reported (to System.err).
|
| Modifier and Type | Method and Description |
|---|---|
static SimEntity.UnknownOperationPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimEntity.UnknownOperationPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimEntity.UnknownOperationPolicy ERROR
This is the default on any SimEntity, unless specified otherwise.
public static final SimEntity.UnknownOperationPolicy REPORT
public static final SimEntity.UnknownOperationPolicy LOG_WARNING
public static final SimEntity.UnknownOperationPolicy LOG_INFO
public static final SimEntity.UnknownOperationPolicy LOG_FINE
public static final SimEntity.UnknownOperationPolicy IGNORE
public static SimEntity.UnknownOperationPolicy[] values()
for (SimEntity.UnknownOperationPolicy c : SimEntity.UnknownOperationPolicy.values()) System.out.println(c);
public static SimEntity.UnknownOperationPolicy 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 © 2018. All rights reserved.