Uses of Class
dev.aherscu.qa.testing.utils.EnumUtils.Separator
-
Packages that use EnumUtils.Separator Package Description dev.aherscu.qa.testing.utils -
-
Uses of EnumUtils.Separator in dev.aherscu.qa.testing.utils
Fields in dev.aherscu.qa.testing.utils declared as EnumUtils.Separator Modifier and Type Field Description static EnumUtils.Separator
EnumUtils. DEFAULT_ENUM_PREFIX
Default prefix to use for mapping members to their textual representation and vice-versa.static EnumUtils.Separator
EnumUtils. DEFAULT_ENUM_SEPARATOR
Default word separator to use for prettifying.Methods in dev.aherscu.qa.testing.utils that return EnumUtils.Separator Modifier and Type Method Description static EnumUtils.Separator
EnumUtils.Separator. valueOf(String name)
Returns the enum constant of this type with the specified name.static EnumUtils.Separator[]
EnumUtils.Separator. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in dev.aherscu.qa.testing.utils with parameters of type EnumUtils.Separator Modifier and Type Method Description static <E extends Enum<E>>
EEnumUtils. fromString(Class<E> enumType, String name, EnumUtils.Separator prefix)
Maps a name to an enumeration member.static <E extends Enum<E>>
StringEnumUtils. prettify(E e, @NotNull EnumUtils.Separator separator)
Prettifies an enumeration member.static <E extends Enum<E>>
StringEnumUtils. toString(E e, EnumUtils.Separator prefix)
Maps an enumeration member to its textual representation.
-