Interface ClassMappingContainer
-
- All Implemented Interfaces:
-
kotlin.collections.Collection,kotlin.collections.Iterable,kotlin.collections.MutableCollection,kotlin.collections.MutableIterable,kotlin.collections.MutableSet,kotlin.collections.Set,org.gradle.api.DomainObjectCollection,org.gradle.api.ExtensiblePolymorphicDomainObjectContainer,org.gradle.api.NamedDomainObjectCollection,org.gradle.api.NamedDomainObjectContainer,org.gradle.api.NamedDomainObjectSet,org.gradle.api.PolymorphicDomainObjectContainer,org.gradle.api.internal.rules.NamedDomainObjectFactoryRegistry,org.gradle.util.Configurable
public interface ClassMappingContainer implements ExtensiblePolymorphicDomainObjectContainer<ClassMapping>
-
-
Method Summary
Modifier and Type Method Description abstract ClassMappingByFormatbyFormat()abstract ClassMappingByFormatbyFormat(Closure<?> closure)abstract ClassMappingByFormatbyFormat(Action<in ClassMappingByFormat> action)ClassMappingByFormatbyFormat(String className, String keyword)ClassMappingByFormatbyFormat(KClass<?> classRef, String keyword)abstract ClassMappingByExtensionbyExtension()abstract ClassMappingByExtensionbyExtension(Closure<?> closure)abstract ClassMappingByExtensionbyExtension(Action<in ClassMappingByExtension> action)ClassMappingByExtensionbyExtension(String className, String keyword, String value)ClassMappingByExtensionbyExtension(KClass<?> classRef, String keyword, String value)abstract ClassMappingByURIbyURI()abstract ClassMappingByURIbyURI(Closure<?> closure)abstract ClassMappingByURIbyURI(Action<in ClassMappingByURI> action)ClassMappingByURIbyURI(String className, URI uri)ClassMappingByURIbyURI(KClass<?> classRef, URI uri)-
Methods inherited from class org.gradle.api.NamedDomainObjectCollection
add, addAll, addRule, addRule, addRule, findByName, getAsMap, getAt, getByName, getByName, getByName, getCollectionSchema, getNamer, getNames, getRules, named, named, named, named -
Methods inherited from class kotlin.collections.MutableCollection
clear, iterator, remove, removeAll, removeIf, retainAll -
Methods inherited from class kotlin.collections.Collection
contains, containsAll, getSize, isEmpty, parallelStream, spliterator, stream, toArray -
Methods inherited from class kotlin.collections.Iterable
forEach -
Methods inherited from class org.gradle.api.DomainObjectCollection
addAllLater, addLater, all, all, configureEach, whenObjectAdded, whenObjectAdded, whenObjectRemoved, whenObjectRemoved, withType, withType -
Methods inherited from class org.gradle.api.NamedDomainObjectSet
findAll, matching, matching, withType -
Methods inherited from class org.gradle.api.NamedDomainObjectContainer
configure, create, create, create, maybeCreate, register, register -
Methods inherited from class org.gradle.api.PolymorphicDomainObjectContainer
containerWithType, create, create, maybeCreate, register, register -
Methods inherited from class org.gradle.api.ExtensiblePolymorphicDomainObjectContainer
registerBinding, registerFactory, registerFactory -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
byFormat
abstract ClassMappingByFormat byFormat()
-
byFormat
abstract ClassMappingByFormat byFormat(Closure<?> closure)
-
byFormat
abstract ClassMappingByFormat byFormat(Action<in ClassMappingByFormat> action)
-
byFormat
ClassMappingByFormat byFormat(String className, String keyword)
-
byFormat
ClassMappingByFormat byFormat(KClass<?> classRef, String keyword)
-
byExtension
abstract ClassMappingByExtension byExtension()
-
byExtension
abstract ClassMappingByExtension byExtension(Closure<?> closure)
-
byExtension
abstract ClassMappingByExtension byExtension(Action<in ClassMappingByExtension> action)
-
byExtension
ClassMappingByExtension byExtension(String className, String keyword, String value)
-
byExtension
ClassMappingByExtension byExtension(KClass<?> classRef, String keyword, String value)
-
byURI
abstract ClassMappingByURI byURI()
-
byURI
abstract ClassMappingByURI byURI(Closure<?> closure)
-
byURI
abstract ClassMappingByURI byURI(Action<in ClassMappingByURI> action)
-
byURI
ClassMappingByURI byURI(String className, URI uri)
-
byURI
ClassMappingByURI byURI(KClass<?> classRef, URI uri)
-
-
-
-