Enum Class ClassPathAssemblyMode

java.lang.Object
java.lang.Enum<ClassPathAssemblyMode>
dev.archunitjava.importer.ClassPathAssemblyMode
All Implemented Interfaces:
Serializable, Comparable<ClassPathAssemblyMode>, Constable

public enum ClassPathAssemblyMode extends Enum<ClassPathAssemblyMode>
Resource lookup namespace.

CLASSPATH uses one global binary-name namespace and the earliest input wins. MODULE_PATH keeps each input in a separate namespace; cross-module name conflicts are therefore not silently resolved using classpath order.

  • Enum Constant Details

  • Method Details

    • values

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