org.jetbrains.kotlin.config
Class CompilerConfiguration
java.lang.Object
org.jetbrains.kotlin.config.CompilerConfiguration
public class CompilerConfiguration
- extends java.lang.Object
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
CompilerConfiguration
public CompilerConfiguration()
get
@Nullable
public <T> T get(@NotNull
CompilerConfigurationKey<T> key)
get
@NotNull
public <T> T get(@NotNull
CompilerConfigurationKey<T> key,
@NotNull
T defaultValue)
getNotNull
@NotNull
public <T> T getNotNull(@NotNull
CompilerConfigurationKey<T> key)
getBoolean
public boolean getBoolean(@NotNull
CompilerConfigurationKey<java.lang.Boolean> key)
getList
@NotNull
public <T> java.util.List<T> getList(@NotNull
CompilerConfigurationKey<java.util.List<T>> key)
put
public <T> void put(@NotNull
CompilerConfigurationKey<T> key,
@NotNull
T value)
add
public <T> void add(@NotNull
CompilerConfigurationKey<java.util.List<T>> key,
@NotNull
T value)
addAll
public <T> void addAll(@NotNull
CompilerConfigurationKey<java.util.List<T>> key,
@NotNull
java.util.Collection<T> values)
copy
public CompilerConfiguration copy()
setReadOnly
public void setReadOnly(boolean readOnly)
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Object