Class StyleAndVariationResourceNameIterator
- java.lang.Object
-
- org.apache.wicket.core.util.resource.locator.StyleAndVariationResourceNameIterator
-
-
Constructor Summary
Constructors Constructor Description StyleAndVariationResourceNameIterator(String style, String variation)
Construct.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getStyle()
String
getVariation()
boolean
hasNext()
String
next()
The return value will always be null.void
remove()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Constructor Detail
-
StyleAndVariationResourceNameIterator
public StyleAndVariationResourceNameIterator(String style, String variation)
Construct.- Parameters:
style
-variation
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interfaceIterator<String>
- See Also:
Iterator.hasNext()
-
next
public String next()
The return value will always be null. Use getStyle() and getVariation() instead.- Specified by:
next
in interfaceIterator<String>
- See Also:
Iterator.next()
-
getVariation
public final String getVariation()
- Returns:
- Gets the variation related to the iterator state
-
remove
public void remove()
- Specified by:
remove
in interfaceIterator<String>
- See Also:
Iterator.remove()
-
-