All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.forge.furnace.ContainerStatus Maven / Gradle / Ivy

/*
 * Copyright 2013 Red Hat, Inc. and/or its affiliates.
 *
 * Licensed under the Eclipse Public License version 1.0, available at
 * http://www.eclipse.org/legal/epl-v10.html
 */

package org.jboss.forge.furnace;

/**
 * The container status
 *
 * @author George Gastaldi
 *
 */
public enum ContainerStatus
{
   STARTING, STARTED, RELOADING, STOPPED;

   public boolean isStarting()
   {
      return this == STARTING;
   }

   public boolean isStarted()
   {
      return this == STARTED;
   }

   public boolean isReloading()
   {
      return this == RELOADING;
   }

   public boolean isStopped()
   {
      return this == STOPPED;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy