Class Config
- java.lang.Object
-
- org.spongepowered.asm.mixin.transformer.Config
-
public class Config extends java.lang.ObjectHandle for marshalling mixin configs outside of the transformer package
-
-
Constructor Summary
Constructors Constructor Description Config(org.spongepowered.asm.mixin.transformer.MixinConfig config)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Configcreate(java.lang.String configFile, IMixinConfigSource source)Factory method, create a config from the specified config resourcestatic Configcreate(java.lang.String configFile, MixinEnvironment outer)Deprecated.static Configcreate(java.lang.String configFile, MixinEnvironment outer, IMixinConfigSource source)Deprecated.booleanequals(java.lang.Object obj)IMixinConfiggetConfig()Get API-level config viewMixinEnvironmentgetEnvironment()Get environment for the configjava.lang.StringgetName()ConfiggetParent()Get the the config's parentinthashCode()booleanisVisited()Get whether config has been visitedjava.lang.StringtoString()
-
-
-
Method Detail
-
getName
public java.lang.String getName()
-
isVisited
public boolean isVisited()
Get whether config has been visited
-
getConfig
public IMixinConfig getConfig()
Get API-level config view
-
getEnvironment
public MixinEnvironment getEnvironment()
Get environment for the config
-
getParent
public Config getParent()
Get the the config's parent
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
create
@Deprecated public static Config create(java.lang.String configFile, MixinEnvironment outer)
Deprecated.Factory method, create a config from the specified config file and fail over to the specified environment if no selector is present in the config- Parameters:
configFile- config resourceouter- failover environment- Returns:
- new config or null if invalid config version
-
create
@Deprecated public static Config create(java.lang.String configFile, MixinEnvironment outer, IMixinConfigSource source)
Deprecated.Factory method, create a config from the specified config file and fail over to the specified environment if no selector is present in the config- Parameters:
configFile- config resourceouter- failover environmentsource- config source- Returns:
- new config or null if invalid config version
-
create
public static Config create(java.lang.String configFile, IMixinConfigSource source)
Factory method, create a config from the specified config resource- Parameters:
configFile- config resourcesource- config source- Returns:
- new config or null if invalid config version
-
-