com.purej.vminspect.html.ConfirmState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of purej-vminspect Show documentation
Show all versions of purej-vminspect Show documentation
An easy to use, feature-rich, JMX-based and embeddable Java VM monitoring tool with a web-based user-interface
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