Package io.quarkus.bootstrap.app
Class ConfiguredClassLoading
- java.lang.Object
-
- io.quarkus.bootstrap.app.ConfiguredClassLoading
-
- All Implemented Interfaces:
Serializable
public class ConfiguredClassLoading extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classConfiguredClassLoading.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConfiguredClassLoading.Builderbuilder()Collection<Path>getAdditionalClasspathElements()Collection<ArtifactKey>getParentFirstArtifacts()Map<ArtifactKey,Collection<String>>getRemovedResources()booleanhasReloadableArtifacts()booleanisFlatTestClassPath()booleanisParentFirstArtifact(ArtifactKey key)booleanisReloadableArtifact(ArtifactKey key)booleanisRemovedArtifact(ArtifactKey key)
-
-
-
Method Detail
-
builder
public static ConfiguredClassLoading.Builder builder()
-
getParentFirstArtifacts
public Collection<ArtifactKey> getParentFirstArtifacts()
-
isParentFirstArtifact
public boolean isParentFirstArtifact(ArtifactKey key)
-
isReloadableArtifact
public boolean isReloadableArtifact(ArtifactKey key)
-
hasReloadableArtifacts
public boolean hasReloadableArtifacts()
-
isRemovedArtifact
public boolean isRemovedArtifact(ArtifactKey key)
-
getRemovedResources
public Map<ArtifactKey,Collection<String>> getRemovedResources()
-
isFlatTestClassPath
public boolean isFlatTestClassPath()
-
getAdditionalClasspathElements
public Collection<Path> getAdditionalClasspathElements()
-
-