Package | Description |
---|---|
net.minecraftforge.fml.common | |
net.minecraftforge.fml.common.versioning |
Modifier and Type | Field and Description |
---|---|
private ArtifactVersion |
MissingModsException.MissingModInfo.acceptedVersion |
private ArtifactVersion |
MissingModsException.MissingModInfo.currentVersion |
private ArtifactVersion |
ModAPIManager.APIContainer.ourVersion |
private ArtifactVersion |
ModAPIManager.APIContainer.ownerMod |
private ArtifactVersion |
DummyModContainer.processedVersion |
Modifier and Type | Field and Description |
---|---|
java.util.List<ArtifactVersion> |
ModMetadata.dependants |
java.util.List<ArtifactVersion> |
ModMetadata.dependencies |
private com.google.common.collect.ListMultimap<java.lang.String,ArtifactVersion> |
Loader.injectedAfter |
private com.google.common.collect.ListMultimap<java.lang.String,ArtifactVersion> |
Loader.injectedBefore |
java.util.Set<ArtifactVersion> |
MissingModsException.missingMods
Deprecated.
|
private java.util.List<ArtifactVersion> |
ModAPIManager.APIContainer.referredMods |
java.util.Set<ArtifactVersion> |
ModMetadata.requiredMods |
Modifier and Type | Method and Description |
---|---|
ArtifactVersion |
MissingModsException.MissingModInfo.getAcceptedVersion() |
ArtifactVersion |
MissingModsException.MissingModInfo.getCurrentVersion() |
ArtifactVersion |
FMLModContainer.getProcessedVersion() |
ArtifactVersion |
InjectedModContainer.getProcessedVersion() |
ArtifactVersion |
ModContainer.getProcessedVersion() |
ArtifactVersion |
DummyModContainer.getProcessedVersion() |
ArtifactVersion |
ModAPIManager.APIContainer.getProcessedVersion() |
ArtifactVersion |
MetadataCollection.ArtifactVersionAdapter.read(com.google.gson.stream.JsonReader in) |
Modifier and Type | Method and Description |
---|---|
java.util.List<ArtifactVersion> |
FMLModContainer.getDependants() |
java.util.List<ArtifactVersion> |
InjectedModContainer.getDependants() |
java.util.List<ArtifactVersion> |
ModContainer.getDependants()
A list of modids that should be loaded after this one.
|
java.util.List<ArtifactVersion> |
DummyModContainer.getDependants() |
java.util.List<ArtifactVersion> |
ModAPIManager.APIContainer.getDependants() |
java.util.List<ArtifactVersion> |
FMLModContainer.getDependencies() |
java.util.List<ArtifactVersion> |
InjectedModContainer.getDependencies() |
java.util.List<ArtifactVersion> |
ModContainer.getDependencies()
A list of modids that should be loaded prior to this one.
|
java.util.List<ArtifactVersion> |
DummyModContainer.getDependencies() |
java.util.List<ArtifactVersion> |
ModAPIManager.APIContainer.getDependencies() |
(package private) java.util.List<ArtifactVersion> |
Loader.getInjectedAfter(java.lang.String modId) |
(package private) java.util.List<ArtifactVersion> |
Loader.getInjectedBefore(java.lang.String modId) |
java.util.Set<ArtifactVersion> |
FMLModContainer.getRequirements() |
java.util.Set<ArtifactVersion> |
InjectedModContainer.getRequirements() |
java.util.Set<ArtifactVersion> |
ModContainer.getRequirements()
A list of the modids that this mod requires loaded prior to loading
|
java.util.Set<ArtifactVersion> |
DummyModContainer.getRequirements() |
Modifier and Type | Method and Description |
---|---|
void |
MissingModsException.addMissingMod(ArtifactVersion acceptedVersion,
ArtifactVersion currentVersion,
boolean required) |
void |
MetadataCollection.ArtifactVersionAdapter.write(com.google.gson.stream.JsonWriter out,
ArtifactVersion value) |
Modifier and Type | Method and Description |
---|---|
void |
Loader.computeDependencies(java.lang.String dependencyString,
java.util.Set<ArtifactVersion> requirements,
java.util.List<ArtifactVersion> dependencies,
java.util.List<ArtifactVersion> dependants)
Deprecated.
|
void |
Loader.computeDependencies(java.lang.String dependencyString,
java.util.Set<ArtifactVersion> requirements,
java.util.List<ArtifactVersion> dependencies,
java.util.List<ArtifactVersion> dependants)
Deprecated.
|
void |
Loader.computeDependencies(java.lang.String dependencyString,
java.util.Set<ArtifactVersion> requirements,
java.util.List<ArtifactVersion> dependencies,
java.util.List<ArtifactVersion> dependants)
Deprecated.
|
Constructor and Description |
---|
APIContainer(java.lang.String providedAPI,
java.lang.String apiVersion,
java.io.File source,
ArtifactVersion ownerMod) |
MissingModInfo(ArtifactVersion acceptedVersion,
ArtifactVersion currentVersion,
boolean required) |
Constructor and Description |
---|
MissingModsException(java.util.Set<ArtifactVersion> missingMods,
java.lang.String id,
java.lang.String name)
Deprecated.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultArtifactVersion |
Modifier and Type | Field and Description |
---|---|
private ArtifactVersion |
Restriction.lowerBound |
private ArtifactVersion |
VersionRange.recommendedVersion |
private ArtifactVersion |
Restriction.upperBound |
Modifier and Type | Field and Description |
---|---|
java.util.List<ArtifactVersion> |
DependencyParser.DependencyInfo.dependants |
java.util.List<ArtifactVersion> |
DependencyParser.DependencyInfo.dependencies |
java.util.Set<ArtifactVersion> |
DependencyParser.DependencyInfo.requirements |
Modifier and Type | Method and Description |
---|---|
ArtifactVersion |
Restriction.getLowerBound() |
ArtifactVersion |
VersionRange.getRecommendedVersion() |
ArtifactVersion |
Restriction.getUpperBound() |
ArtifactVersion |
VersionRange.matchVersion(java.util.List<ArtifactVersion> versions) |
static ArtifactVersion |
VersionParser.parseVersionReference(java.lang.String labelledRef) |
Modifier and Type | Method and Description |
---|---|
int |
DefaultArtifactVersion.compareTo(ArtifactVersion o) |
boolean |
DefaultArtifactVersion.containsVersion(ArtifactVersion source) |
boolean |
VersionRange.containsVersion(ArtifactVersion version) |
boolean |
ArtifactVersion.containsVersion(ArtifactVersion source) |
boolean |
Restriction.containsVersion(ArtifactVersion version) |
static VersionRange |
VersionRange.createFromVersion(java.lang.String version,
ArtifactVersion existing) |
static VersionRange |
VersionRange.newRange(ArtifactVersion version,
java.util.List<Restriction> restrictions)
Factory method, for custom versioning schemes
|
static boolean |
VersionParser.satisfies(ArtifactVersion target,
ArtifactVersion source) |
Modifier and Type | Method and Description |
---|---|
ArtifactVersion |
VersionRange.matchVersion(java.util.List<ArtifactVersion> versions) |
Constructor and Description |
---|
Restriction(ArtifactVersion lowerBound,
boolean lowerBoundInclusive,
ArtifactVersion upperBound,
boolean upperBoundInclusive) |
VersionRange(ArtifactVersion recommendedVersion,
java.util.List<Restriction> restrictions) |