Enum ManagedTimerServiceConfiguration.TimerFilter
- java.lang.Object
-
- java.lang.Enum<ManagedTimerServiceConfiguration.TimerFilter>
-
- org.jboss.as.ejb3.timerservice.spi.ManagedTimerServiceConfiguration.TimerFilter
-
- All Implemented Interfaces:
Serializable,Comparable<ManagedTimerServiceConfiguration.TimerFilter>,Function<org.jboss.msc.service.ServiceName,org.jboss.msc.service.ServiceName>,Predicate<jakarta.ejb.TimerConfig>,UnaryOperator<org.jboss.msc.service.ServiceName>
- Enclosing interface:
- ManagedTimerServiceConfiguration
public static enum ManagedTimerServiceConfiguration.TimerFilter extends Enum<ManagedTimerServiceConfiguration.TimerFilter> implements Predicate<jakarta.ejb.TimerConfig>, UnaryOperator<org.jboss.msc.service.ServiceName>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLPERSISTENTTRANSIENT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.jboss.msc.service.ServiceNameapply(org.jboss.msc.service.ServiceName name)static ManagedTimerServiceConfiguration.TimerFiltervalueOf(String name)Returns the enum constant of this type with the specified name.static ManagedTimerServiceConfiguration.TimerFilter[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final ManagedTimerServiceConfiguration.TimerFilter ALL
-
TRANSIENT
public static final ManagedTimerServiceConfiguration.TimerFilter TRANSIENT
-
PERSISTENT
public static final ManagedTimerServiceConfiguration.TimerFilter PERSISTENT
-
-
Method Detail
-
values
public static ManagedTimerServiceConfiguration.TimerFilter[] 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 (ManagedTimerServiceConfiguration.TimerFilter c : ManagedTimerServiceConfiguration.TimerFilter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ManagedTimerServiceConfiguration.TimerFilter valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-