public enum RaftInternalState extends Enum<RaftInternalState> implements Serializable
| Enum Constant and Description |
|---|
CLEARING |
INTEGRATING |
NEEDS_CLEAR |
QUIESCENT |
READING_OUT |
| Modifier and Type | Method and Description |
|---|---|
RaftInternalState |
clear(RaftSim r) |
RaftInternalState |
discardRows(RaftSim r) |
void |
enter(RaftSim r) |
void |
exit(RaftSim r) |
RaftInternalState |
integrate(RaftSim r) |
RaftInternalState |
readout(RaftSim r) |
static RaftInternalState |
scheduled(RaftSim r,
RaftInternalState from,
RaftInternalState to) |
ScheduledFuture<RaftInternalState> |
scheduleTransition(RaftSim r,
Duration delay,
RaftInternalState to) |
static RaftInternalState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RaftInternalState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RaftInternalState CLEARING
public static final RaftInternalState QUIESCENT
public static final RaftInternalState INTEGRATING
public static final RaftInternalState READING_OUT
public static final RaftInternalState NEEDS_CLEAR
public static RaftInternalState[] values()
for (RaftInternalState c : RaftInternalState.values()) System.out.println(c);
public static RaftInternalState 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 RaftInternalState clear(RaftSim r)
public RaftInternalState integrate(RaftSim r)
public RaftInternalState readout(RaftSim r)
public RaftInternalState discardRows(RaftSim r)
public void enter(RaftSim r)
public void exit(RaftSim r)
public static RaftInternalState scheduled(RaftSim r, RaftInternalState from, RaftInternalState to)
public ScheduledFuture<RaftInternalState> scheduleTransition(RaftSim r, Duration delay, RaftInternalState to)
Copyright © 2018 LSST. All rights reserved.