Package io.jmix.webdav.dto
Class Protocols
java.lang.Object
io.jmix.webdav.dto.Protocols
- All Implemented Interfaces:
Map<ApplicationProtocolType,
String>
-
Nested Class Summary
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
compute
(ApplicationProtocolType key, BiFunction<? super ApplicationProtocolType, ? super String, ? extends String> remappingFunction) computeIfAbsent
(ApplicationProtocolType key, Function<? super ApplicationProtocolType, ? extends String> mappingFunction) computeIfPresent
(ApplicationProtocolType key, BiFunction<? super ApplicationProtocolType, ? super String, ? extends String> remappingFunction) boolean
containsKey
(Object key) boolean
containsValue
(Object value) entrySet()
boolean
void
forEach
(BiConsumer<? super ApplicationProtocolType, ? super String> action) getOrDefault
(Object key, String defaultValue) getProtocolByProtocolType
(ApplicationProtocolType protocolType) int
hashCode()
boolean
isEmpty()
keySet()
merge
(ApplicationProtocolType key, String value, BiFunction<? super String, ? super String, ? extends String> remappingFunction) put
(ApplicationProtocolType key, String value) void
putAll
(@NotNull Map<? extends ApplicationProtocolType, ? extends String> m) putIfAbsent
(ApplicationProtocolType key, String value) boolean
replace
(ApplicationProtocolType key, String value) boolean
replace
(ApplicationProtocolType key, String oldValue, String newValue) void
replaceAll
(BiFunction<? super ApplicationProtocolType, ? super String, ? extends String> function) int
size()
values()
-
Field Details
-
delegate
-
-
Constructor Details
-
Protocols
public Protocols() -
Protocols
-
-
Method Details
-
getProtocolByProtocolType
-
size
public int size()- Specified by:
size
in interfaceMap<ApplicationProtocolType,
String>
-
isEmpty
public boolean isEmpty()- Specified by:
isEmpty
in interfaceMap<ApplicationProtocolType,
String>
-
containsKey
- Specified by:
containsKey
in interfaceMap<ApplicationProtocolType,
String>
-
containsValue
- Specified by:
containsValue
in interfaceMap<ApplicationProtocolType,
String>
-
get
- Specified by:
get
in interfaceMap<ApplicationProtocolType,
String>
-
put
- Specified by:
put
in interfaceMap<ApplicationProtocolType,
String>
-
remove
- Specified by:
remove
in interfaceMap<ApplicationProtocolType,
String>
-
putAll
- Specified by:
putAll
in interfaceMap<ApplicationProtocolType,
String>
-
clear
public void clear()- Specified by:
clear
in interfaceMap<ApplicationProtocolType,
String>
-
keySet
- Specified by:
keySet
in interfaceMap<ApplicationProtocolType,
String>
-
values
- Specified by:
values
in interfaceMap<ApplicationProtocolType,
String>
-
entrySet
- Specified by:
entrySet
in interfaceMap<ApplicationProtocolType,
String>
-
equals
-
hashCode
public int hashCode() -
getOrDefault
- Specified by:
getOrDefault
in interfaceMap<ApplicationProtocolType,
String>
-
forEach
- Specified by:
forEach
in interfaceMap<ApplicationProtocolType,
String>
-
replaceAll
public void replaceAll(BiFunction<? super ApplicationProtocolType, ? super String, ? extends String> function) - Specified by:
replaceAll
in interfaceMap<ApplicationProtocolType,
String>
-
putIfAbsent
- Specified by:
putIfAbsent
in interfaceMap<ApplicationProtocolType,
String>
-
remove
- Specified by:
remove
in interfaceMap<ApplicationProtocolType,
String>
-
replace
- Specified by:
replace
in interfaceMap<ApplicationProtocolType,
String>
-
replace
- Specified by:
replace
in interfaceMap<ApplicationProtocolType,
String>
-
computeIfAbsent
public String computeIfAbsent(ApplicationProtocolType key, Function<? super ApplicationProtocolType, ? extends String> mappingFunction) - Specified by:
computeIfAbsent
in interfaceMap<ApplicationProtocolType,
String>
-
computeIfPresent
public String computeIfPresent(ApplicationProtocolType key, BiFunction<? super ApplicationProtocolType, ? super String, ? extends String> remappingFunction) - Specified by:
computeIfPresent
in interfaceMap<ApplicationProtocolType,
String>
-
compute
public String compute(ApplicationProtocolType key, BiFunction<? super ApplicationProtocolType, ? super String, ? extends String> remappingFunction) - Specified by:
compute
in interfaceMap<ApplicationProtocolType,
String>
-
merge
public String merge(ApplicationProtocolType key, String value, BiFunction<? super String, ? super String, ? extends String> remappingFunction) - Specified by:
merge
in interfaceMap<ApplicationProtocolType,
String>
-