Package com.intellij.util.io
Interface ByteBufferMap.ValueProvider<V>
-
- All Known Implementing Classes:
IntArrayValueProvider
,IntValueProvider
- Enclosing class:
- ByteBufferMap<K,V>
public static interface ByteBufferMap.ValueProvider<V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description V
get(DataInput in)
int
length(V value)
void
write(DataOutput out, V value)
-
-
-
Method Detail
-
write
void write(DataOutput out, V value) throws IOException
- Throws:
IOException
-
length
int length(V value)
-
get
V get(DataInput in) throws IOException
- Throws:
IOException
-
-