The ordering of the State enum is defined such that if there is a state transition
from A -> B then A.compareTo(B) < 0. N.B. The converse is not true, i.e. if
A.compareTo(B) < 0 then there is not guaranteed to be a valid state transition
A -> B.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-17 UTC."],[[["This webpage provides documentation for the `ApiService.State` enum in the Google API Core library for Java, detailing the lifecycle states of a service."],["The `ApiService.State` enum defines six states: `FAILED`, `NEW`, `RUNNING`, `STARTING`, `STOPPING`, and `TERMINATED`, each describing the operational status of a service."],["The enum states are ordered, meaning that if a service transitions from state A to state B, then A will have a lower value than B, although the converse is not guaranteed."],["The page lists documentation for multiple versions of the API, from version 2.1.2 up to the latest version 2.46.1, providing access to specific version details."],["The webpage mentions that the enum inherits several members from the base Enum and Object classes, such as `valueOf`, `compareTo`, `equals`, `getClass` and others, offering utility for manipulating the states."]]],[]]