Enum Class JHipsterModuleRank

java.lang.Object
java.lang.Enum<JHipsterModuleRank>
tech.jhipster.lite.module.domain.resource.JHipsterModuleRank
All Implemented Interfaces:
Serializable, Comparable<JHipsterModuleRank>, Constable

public enum JHipsterModuleRank extends Enum<JHipsterModuleRank>
Represents the maturity and adoption level of JHipster modules. Ranks range from experimental to community-validated, helping users assess module stability and production readiness.
  • Enum Constant Details

    • RANK_D

      public static final JHipsterModuleRank RANK_D
      Experimental or advanced module requiring specific expertise
    • RANK_C

      public static final JHipsterModuleRank RANK_C
      Module without known production usage
    • RANK_B

      public static final JHipsterModuleRank RANK_B
      Module with at least one confirmed production usage
    • RANK_A

      public static final JHipsterModuleRank RANK_A
      Module with multiple production usages across different projects and documented through talks, books or blog posts
    • RANK_S

      public static final JHipsterModuleRank RANK_S
      Production-proven module providing unique features, validated by community feedback (10+ endorsements)
  • Method Details

    • values

      public static JHipsterModuleRank[] 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

      public static JHipsterModuleRank valueOf(String name)
      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 name
      NullPointerException - if the argument is null