Enum PrometheusPushGatewayManager.ShutdownOperation
- java.lang.Object
-
- java.lang.Enum<PrometheusPushGatewayManager.ShutdownOperation>
-
- io.micrometer.spring.export.prometheus.PrometheusPushGatewayManager.ShutdownOperation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PrometheusPushGatewayManager.ShutdownOperation>
- Enclosing class:
- PrometheusPushGatewayManager
public static enum PrometheusPushGatewayManager.ShutdownOperation extends java.lang.Enum<PrometheusPushGatewayManager.ShutdownOperation>
The operation that should be performed on shutdown.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PrometheusPushGatewayManager.ShutdownOperation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PrometheusPushGatewayManager.ShutdownOperation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final PrometheusPushGatewayManager.ShutdownOperation NONE
Don't perform any shutdown operation.
-
PUSH
public static final PrometheusPushGatewayManager.ShutdownOperation PUSH
Perform a 'push' before shutdown.
-
DELETE
public static final PrometheusPushGatewayManager.ShutdownOperation DELETE
Perform a 'delete' before shutdown.
-
-
Method Detail
-
values
public static PrometheusPushGatewayManager.ShutdownOperation[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PrometheusPushGatewayManager.ShutdownOperation c : PrometheusPushGatewayManager.ShutdownOperation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PrometheusPushGatewayManager.ShutdownOperation valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-