Package io.javalin.rendering.util
Enum RenderingDependency
-
- All Implemented Interfaces:
-
io.javalin.util.OptionalDependency,java.io.Serializable,kotlin.Comparable
public enum RenderingDependency extends Enum<RenderingDependency> implements OptionalDependency
-
-
Field Summary
Fields Modifier and Type Field Description private final StringdisplayNameprivate final StringtestClassprivate final StringgroupIdprivate final StringartifactIdprivate final Stringversionprivate final Stringnameprivate final Integerordinalprivate final EnumEntries<RenderingDependency>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description JTEJTE_KOTLINVELOCITYFREEMARKERTHYMELEAFMUSTACHEPEBBLECOMMONMARK
-
Method Summary
Modifier and Type Method Description final RenderingDependencyvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<RenderingDependency>values()Returns an array containing the constants of this enum type, in the order they're declared. StringgetDisplayName()StringgetTestClass()StringgetGroupId()StringgetArtifactId()StringgetVersion()final EnumEntries<RenderingDependency>getEntries()-
-
Method Detail
-
valueOf
final RenderingDependency valueOf(String value)
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.)
-
values
final Array<RenderingDependency> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getDisplayName
String getDisplayName()
-
getTestClass
String getTestClass()
-
getGroupId
String getGroupId()
-
getArtifactId
String getArtifactId()
-
getVersion
String getVersion()
-
getEntries
final EnumEntries<RenderingDependency> getEntries()
-
-
-
-