public static interface SshConfigStore.HostConfig
Modifier and Type | Method and Description |
---|---|
Map<String,List<String>> |
getMultiValuedOptions()
Retrieves an unmodifiable map of all multi- or list-valued options,
with case-insensitive lookup by keys.
|
Map<String,String> |
getOptions()
Retrieves an unmodifiable map of all single-valued options, with
case-insensitive lookup by keys.
|
String |
getValue(String key)
Retrieves the value of a single-valued key, or the first if the key
has multiple values.
|
List<String> |
getValues(String key)
Retrieves the values of a multi- or list-valued key.
|
String getValue(String key)
getValue("HostName") == getValue("HOSTNAME")
.key
- to get the value ofnull
if noneList<String> getValues(String key)
getValue("HostName") == getValue("HOSTNAME")
.key
- to get the values of@NonNull Map<String,String> getOptions()
Copyright © 2021 Eclipse JGit Project. All rights reserved.