Enum Class JHipsterModuleRank
- All Implemented Interfaces:
Serializable,Comparable<JHipsterModuleRank>,Constable
Represents the maturity and adoption level of JHipster modules.
Ranks range from experimental to community-validated,
helping users assess module stability and production readiness.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionModule with multiple production usages across different projects and documented through talks, books or blog postsModule with at least one confirmed production usageModule without known production usageExperimental or advanced module requiring specific expertiseProduction-proven module providing unique features, validated by community feedback (10+ endorsements) -
Method Summary
Modifier and TypeMethodDescriptionstatic JHipsterModuleRankReturns the enum constant of this class with the specified name.static JHipsterModuleRank[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
RANK_D
Experimental or advanced module requiring specific expertise -
RANK_C
Module without known production usage -
RANK_B
Module with at least one confirmed production usage -
RANK_A
Module with multiple production usages across different projects and documented through talks, books or blog posts -
RANK_S
Production-proven module providing unique features, validated by community feedback (10+ endorsements)
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-