KeyValuePair<K,V> Class
- java.
lang. Object - microsoft.
servicefabric. data. utilities. KeyValuePair<K,V>
- microsoft.
Type Parameters
- K
Specifies the type of the key
- V
Specifies the type of the value
public class KeyValuePair<K extends String,V>
A pair maintaining a key and a value.
Constructor Summary
Constructor | Description |
---|---|
KeyValuePair(K key, V value) |
Creates a pair representing a mapping from the specified key to the specified value. |
Method Summary
Modifier and Type | Method and Description |
---|---|
K |
getKey()
Gets the key. |
V |
getValue()
Gets the value |
Constructor Details
KeyValuePair
public KeyValuePair(K key, V value)
Creates a pair representing a mapping from the specified key to the specified value.
Parameters:
key
- The key
value
- The value
Method Details
getKey
public K getKey()
Gets the key.
Returns:
The key
getValue
public V getValue()
Gets the value
Returns:
The value.
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Azure SDK for Java