public enum LogLevelMapper extends Enum<LogLevelMapper> implements ValueMapper<Level>
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
boolean |
handles(Class<?> type,
Class<?>... parameters)
Checks if given type is supported by this handler
|
Level |
transform(String value)
Returns converted value from a string
|
static LogLevelMapper |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogLevelMapper[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogLevelMapper INSTANCE
public static LogLevelMapper[] values()
for (LogLevelMapper c : LogLevelMapper.values()) System.out.println(c);
public static LogLevelMapper valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic boolean handles(Class<?> type, Class<?>... parameters)
ValueMapperhandles in interface ValueMapper<Level>type - Type to be supportedparameters - Types that have to match in case type is generic typetrue if this is supported, false otherwisepublic Level transform(String value) throws IllegalArgumentException
ValueMappertransform in interface ValueMapper<Level>value - String value to be convertedIllegalArgumentException - If conversion was not possibleCopyright © 2022 JBoss by Red Hat. All rights reserved.