public static enum FailureTestingListener.CallType extends Enum<FailureTestingListener.CallType>
| Enum Constant and Description |
|---|
ANY |
BACKWARD_PASS |
EPOCH_END |
EPOCH_START |
FORWARD_PASS |
GRADIENT_CALC |
ITER_DONE |
| Modifier and Type | Method and Description |
|---|---|
static FailureTestingListener.CallType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FailureTestingListener.CallType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FailureTestingListener.CallType ANY
public static final FailureTestingListener.CallType EPOCH_START
public static final FailureTestingListener.CallType EPOCH_END
public static final FailureTestingListener.CallType FORWARD_PASS
public static final FailureTestingListener.CallType GRADIENT_CALC
public static final FailureTestingListener.CallType BACKWARD_PASS
public static final FailureTestingListener.CallType ITER_DONE
public static FailureTestingListener.CallType[] values()
for (FailureTestingListener.CallType c : FailureTestingListener.CallType.values()) System.out.println(c);
public static FailureTestingListener.CallType 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 © 2021. All rights reserved.