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 SummaryAll 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.IterableforEach, iterator, spliterator
 
- 
 
- 
- 
- 
Method Detail- 
addvoid add(ResourceConfig resourceConfig) 
 - 
addAllvoid addAll(ResourceConfigSeq resourceConfigSeq) 
 - 
addvoid add(ProfileSet profileSet) 
 - 
getNameString getName() 
 - 
isSystemboolean isSystem() 
 - 
setSystemvoid setSystem(boolean isSystem) 
 - 
isEmptyboolean isEmpty() 
 - 
sizeint size() 
 - 
getResourceConfig get(int index) throws ArrayIndexOutOfBoundsException - Throws:
- ArrayIndexOutOfBoundsException
 
 - 
getAllList<ResourceConfig> getAll() throws ArrayIndexOutOfBoundsException - Throws:
- ArrayIndexOutOfBoundsException
 
 - 
getAllList<ResourceConfig> getAll(ProfileSet profileSet) 
 - 
getProfilesList<ProfileSet> getProfiles() 
 - 
lookupResourceList<ResourceConfig> lookupResource(ConfigSearch searchCriteria) 
 
- 
 
-