Uses of Interface
org.ojalgo.type.keyvalue.KeyValue
-
Packages that use KeyValue Package Description org.ojalgo.data.domain.finance.series org.ojalgo.netio This package loosely corresponds to (extends) the packages: java.io.*, java.nio.*, java.net.* and sun.net.*org.ojalgo.type.keyvalue -
-
Uses of KeyValue in org.ojalgo.data.domain.finance.series
Classes in org.ojalgo.data.domain.finance.series that implement KeyValue Modifier and Type Class Description static class
AlphaVantageParser.Data
class
DatePrice
(package private) static class
DatePrice.DefaultDP
static class
IEXTradingParser.Data
static class
YahooParser.Data
Methods in org.ojalgo.data.domain.finance.series that return KeyValue Modifier and Type Method Description KeyValue<java.lang.String,java.util.List<DatePrice>>
DataSource. getHistoricalData()
KeyValue<java.lang.String,java.util.List<DP>>
FinanceData. getHistoricalData()
KeyValue<java.lang.String,java.util.List<DP>>
FinanceDataReader. getHistoricalData()
-
Uses of KeyValue in org.ojalgo.netio
Fields in org.ojalgo.netio with type parameters of type KeyValue Modifier and Type Field Description private java.util.List<KeyValue<java.util.function.Predicate<java.lang.String>,TextLineReader.Parser<? extends T>>>
DetectingParser. myPotentialParsers
-
Uses of KeyValue in org.ojalgo.type.keyvalue
Subinterfaces of KeyValue in org.ojalgo.type.keyvalue Modifier and Type Interface Description interface
EntryPair<K,V>
Singleton (immutable)Map
:s with primitive valued specialisations.static interface
EntryPair.KeyedPrimitive<K>
Classes in org.ojalgo.type.keyvalue that implement KeyValue Modifier and Type Class Description static class
EntryPair.ObjectByte<K>
static class
EntryPair.ObjectDouble<K>
static class
EntryPair.ObjectFloat<K>
static class
EntryPair.ObjectInt<K>
static class
EntryPair.ObjectLong<K>
static class
EntryPair.ObjectObject<K,V>
static class
EntryPair.ObjectShort<K>
static class
KeyValue.Dual<T>
A pair of the same type.Methods in org.ojalgo.type.keyvalue that return KeyValue Modifier and Type Method Description static <K> KeyValue<K,PrimitiveNumber>
KeyValue. of(K key, byte value)
static <K> KeyValue<K,PrimitiveNumber>
KeyValue. of(K key, double value)
static <K> KeyValue<K,PrimitiveNumber>
KeyValue. of(K key, float value)
static <K> KeyValue<K,PrimitiveNumber>
KeyValue. of(K key, int value)
static <K> KeyValue<K,PrimitiveNumber>
KeyValue. of(K key, long value)
static <K> KeyValue<K,PrimitiveNumber>
KeyValue. of(K key, short value)
static <K> KeyValue<KeyValue.Dual<K>,PrimitiveNumber>
KeyValue. of(K key1, K key2, byte value)
static <K> KeyValue<KeyValue.Dual<K>,PrimitiveNumber>
KeyValue. of(K key1, K key2, double value)
static <K> KeyValue<KeyValue.Dual<K>,PrimitiveNumber>
KeyValue. of(K key1, K key2, float value)
static <K> KeyValue<KeyValue.Dual<K>,PrimitiveNumber>
KeyValue. of(K key1, K key2, int value)
static <K> KeyValue<KeyValue.Dual<K>,PrimitiveNumber>
KeyValue. of(K key1, K key2, long value)
static <K> KeyValue<KeyValue.Dual<K>,PrimitiveNumber>
KeyValue. of(K key1, K key2, short value)
static <K,V>
KeyValue<KeyValue.Dual<K>,V>KeyValue. of(K key1, K key2, V value)
static <K,V>
KeyValue<K,V>KeyValue. of(K key, V value)
-