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 void
add(ProfileSet profileSet)
void
add(ResourceConfig resourceConfig)
void
addAll(ResourceConfigSeq resourceConfigSeq)
ResourceConfig
get(int index)
List<ResourceConfig>
getAll()
List<ResourceConfig>
getAll(ProfileSet profileSet)
String
getName()
List<ProfileSet>
getProfiles()
boolean
isEmpty()
boolean
isSystem()
List<ResourceConfig>
lookupResource(ConfigSearch searchCriteria)
void
setSystem(boolean isSystem)
int
size()
-
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)
-
-