Package io.quarkus.runtime.configuration
Interface Aliased
-
public interface AliasedAn enum that has multiple possible textual representations. The representation used for output will always be the result ofObject.toString(), but these additional aliases will be allowed on input as alternative spellings of the enum that implements the method.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<String>getAliases()Get the aliases for this value.
-
-
-
Method Detail
-
getAliases
Collection<String> getAliases()
Get the aliases for this value.- Returns:
- the collection of aliases (must not be
null)
-
-