MCPcopy Index your code
hub / github.com/ccxt/ccxt / objectValues

Method objectValues

java/lib/src/main/java/io/github/ccxt/Helpers.java:965–972  ·  view source on GitHub ↗

Same as #objectKeys but for values — transpile of `Object.values(x)`.

(Object target)

Source from the content-addressed store, hash-verified

963
964 /** Same as {@link #objectKeys} but for values — transpile of `Object.values(x)`. */
965 public static List<Object> objectValues(Object target) {
966 if (target instanceof Map<?, ?> m) {
967 synchronized (m) {
968 return new ArrayList<>(m.values());
969 }
970 }
971 return new ArrayList<>();
972 }
973
974 @SuppressWarnings("unchecked")
975 public static void addElementToObject(Object target, Object... args) {

Callers 15

reduceFeesByCurrencyMethod · 0.95
cleanCacheMethod · 0.95
fetchOrdersMethod · 0.95
fetchCurrenciesMethod · 0.95
fetchMarketsMethod · 0.95
parseOrderMethod · 0.95
fetchCurrenciesMethod · 0.95
fetchCurrenciesMethod · 0.95
fetchCurrenciesMethod · 0.95
fetchTickersMethod · 0.95
fetchCurrenciesMethod · 0.95

Calls 1

valuesMethod · 0.45

Tested by 10

testLoadMarketsMethod · 0.76
testFetchLastPricesMethod · 0.76
testFetchCurrenciesMethod · 0.76
testFetchMarketsMethod · 0.76
getValidSymbolMethod · 0.76