
com.tigerbrokers.stock.openapi.client.struct.Indicator Maven / Gradle / Ivy
package com.tigerbrokers.stock.openapi.client.struct;
import java.util.HashSet;
import java.util.Set;
/**
* Description:
* Created by bean on 2023/06/15.
*/
public interface Indicator {
String getValue();
public static Set getValues(Set indicators) {
Set values = new HashSet<>();
if (indicators != null) {
for (Indicator indicator : indicators) {
values.add(indicator.getValue());
}
}
return values;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy