Package org.smooks.api.resource.config
Interface ResourceConfigSeq
-
- All Superinterfaces:
Iterable<ResourceConfig>
- All Known Implementing Classes:
DefaultResourceConfigSeq
public interface ResourceConfigSeq extends Iterable<ResourceConfig>
An ordered list ofResourceConfig.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidadd(ProfileSet profileSet)voidadd(ResourceConfig resourceConfig)voidaddAll(ResourceConfigSeq resourceConfigSeq)ResourceConfigget(int index)List<ResourceConfig>getAll()List<ResourceConfig>getAll(ProfileSet profileSet)StringgetName()List<ProfileSet>getProfiles()booleanisEmpty()booleanisSystem()List<ResourceConfig>lookupResource(ConfigSearch searchCriteria)voidsetSystem(boolean isSystem)intsize()-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
-
-
-
Method Detail
-
add
void add(ResourceConfig resourceConfig)
-
addAll
void addAll(ResourceConfigSeq resourceConfigSeq)
-
add
void add(ProfileSet profileSet)
-
getName
String getName()
-
isSystem
boolean isSystem()
-
setSystem
void setSystem(boolean isSystem)
-
isEmpty
boolean isEmpty()
-
size
int size()
-
get
ResourceConfig get(int index) throws ArrayIndexOutOfBoundsException
- Throws:
ArrayIndexOutOfBoundsException
-
getAll
List<ResourceConfig> getAll() throws ArrayIndexOutOfBoundsException
- Throws:
ArrayIndexOutOfBoundsException
-
getAll
List<ResourceConfig> getAll(ProfileSet profileSet)
-
getProfiles
List<ProfileSet> getProfiles()
-
lookupResource
List<ResourceConfig> lookupResource(ConfigSearch searchCriteria)
-
-