Package org.wildfly.security.authz
Interface Attributes.Entry
- 
- All Known Subinterfaces:
- Attributes.SetEntry
 - All Known Implementing Classes:
- SimpleAttributesEntry
 - Enclosing interface:
- Attributes
 
 public static interface Attributes.Entry extends List<String> The entry collection for a mapping.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description StringgetKey()Get the mapping key.voidremoveRange(int from, int to)Remove all the values for the given key between thefromindex (inclusive) and thetoindex (exclusive).default Spliterator<String>spliterator()Create a spliterator over the elements of this ordered and non-null collection.- 
Methods inherited from interface java.util.CollectionparallelStream, removeIf, stream, toArray
 
- 
 
- 
- 
- 
Method Detail- 
getKeyString getKey() Get the mapping key.- Returns:
- the mapping key
 
 - 
removeRangevoid removeRange(int from, int to)Remove all the values for the given key between thefromindex (inclusive) and thetoindex (exclusive).- Parameters:
- from- the start index (inclusive)
- to- the end index (exclusive)
- Throws:
- IndexOutOfBoundsException- if- fromor- tois outside of the allowed range
 
 - 
spliteratordefault Spliterator<String> spliterator() Create a spliterator over the elements of this ordered and non-null collection.- Specified by:
- spliteratorin interface- Collection<String>
- Specified by:
- spliteratorin interface- Iterable<String>
- Specified by:
- spliteratorin interface- List<String>
- Returns:
- the spliterator
 
 
- 
 
-