Uses of Interface
org.greenbytes.http.sfv.Item
-
-
Uses of Item in org.greenbytes.http.sfv
Subinterfaces of Item in org.greenbytes.http.sfv Modifier and Type Interface Description interfaceNumberItem<T>Common interface for allTypes that can carry numbers.Classes in org.greenbytes.http.sfv that implement Item Modifier and Type Class Description classBooleanItemRepresents a Boolean.classByteSequenceItemRepresents a Byte Sequence.classDateItemRepresents a Date.classDecimalItemRepresents a Decimal.classDisplayStringItemRepresents a Display String.classIntegerItemRepresents an Integer.classStringItemRepresents a String.classTokenItemRepresents a Token.Methods in org.greenbytes.http.sfv that return Item Modifier and Type Method Description Item<?>Parameters. compute(String key, BiFunction<? super String,? super Item<?>,? extends Item<?>> remappingFunction)Item<?>Parameters. computeIfAbsent(String key, Function<? super String,? extends Item<?>> mappingFunction)Item<?>Parameters. computeIfPresent(String key, BiFunction<? super String,? super Item<?>,? extends Item<?>> remappingFunction)Item<?>Parameters. get(Object key)Item<?>Parameters. getOrDefault(Object key, Item<?> defaultValue)Item<?>Parameters. merge(String key, Item<?> value, BiFunction<? super Item<?>,? super Item<?>,? extends Item<?>> remappingFunction)static Item<?>Parser. parseBareItem(String input)Implementation of "Parsing a Bare Item" (assuming no extra characters left in input string)Item<?>Parser. parseItem()Implementation of "Parsing an Item"static Item<?>Parser. parseItem(String input)Implementation of "Parsing an Item" (assuming no extra characters left in input string)Item<?>Parameters. put(String key, Item<?> value)Item<?>Parameters. putIfAbsent(String key, Item<?> value)Item<?>Parameters. remove(Object key)Item<?>Parameters. replace(String key, Item<?> value)Item<T>Item. withParams(Parameters params)Methods in org.greenbytes.http.sfv that return types with arguments of type Item Modifier and Type Method Description Set<Map.Entry<String,Item<?>>>Parameters. entrySet()List<Item<?>>InnerList. get()Collection<Item<?>>Parameters. values()Methods in org.greenbytes.http.sfv with parameters of type Item Modifier and Type Method Description Item<?>Parameters. getOrDefault(Object key, Item<?> defaultValue)Item<?>Parameters. merge(String key, Item<?> value, BiFunction<? super Item<?>,? super Item<?>,? extends Item<?>> remappingFunction)Item<?>Parameters. put(String key, Item<?> value)Item<?>Parameters. putIfAbsent(String key, Item<?> value)Item<?>Parameters. replace(String key, Item<?> value)booleanParameters. replace(String key, Item<?> oldValue, Item<?> newValue)Method parameters in org.greenbytes.http.sfv with type arguments of type Item Modifier and Type Method Description Item<?>Parameters. compute(String key, BiFunction<? super String,? super Item<?>,? extends Item<?>> remappingFunction)Item<?>Parameters. compute(String key, BiFunction<? super String,? super Item<?>,? extends Item<?>> remappingFunction)Item<?>Parameters. computeIfAbsent(String key, Function<? super String,? extends Item<?>> mappingFunction)Item<?>Parameters. computeIfPresent(String key, BiFunction<? super String,? super Item<?>,? extends Item<?>> remappingFunction)Item<?>Parameters. computeIfPresent(String key, BiFunction<? super String,? super Item<?>,? extends Item<?>> remappingFunction)voidParameters. forEach(BiConsumer<? super String,? super Item<?>> action)Item<?>Parameters. merge(String key, Item<?> value, BiFunction<? super Item<?>,? super Item<?>,? extends Item<?>> remappingFunction)Item<?>Parameters. merge(String key, Item<?> value, BiFunction<? super Item<?>,? super Item<?>,? extends Item<?>> remappingFunction)Item<?>Parameters. merge(String key, Item<?> value, BiFunction<? super Item<?>,? super Item<?>,? extends Item<?>> remappingFunction)voidParameters. putAll(Map<? extends String,? extends Item<?>> m)voidParameters. replaceAll(BiFunction<? super String,? super Item<?>,? extends Item<?>> function)voidParameters. replaceAll(BiFunction<? super String,? super Item<?>,? extends Item<?>> function)static InnerListInnerList. valueOf(List<Item<?>> value)Creates anInnerListinstance representing the specifiedList<Item>value.
-