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

com.purej.vminspect.html.ConfirmState Maven / Gradle / Ivy

Go to download

An easy to use, feature-rich, JMX-based and embeddable Java VM monitoring tool with a web-based user-interface

There is a newer version: 2.1.1
Show newest version
package com.purej.vminspect.html;

/**
 * The current confirmation state for write-operations.
 *
 * @author Stefan Mueller
 */
public enum ConfirmState {
  /**
   * If no confirm is required at all (default).
   */
  OFF,

  /**
   * If the next screen will be a confirm screen.
   */
  NEXT,

  /**
   * If this screen is a confirm screen.
   */
  NOW;

  /**
   * If state equals NOW.
   */
  public boolean isNow() {
    return this == NOW;
  }

  /**
   * If state equals NEXT.
   */
  public boolean isNext() {
    return this == NEXT;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy