Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法检索包含 JFugue (ver 5.0.9) 支持的所有节奏的字符串数组?
目前我正在将它们作为数组中的文字输入, new String[]{"Lento","Adagio"}但我希望有更好的方法。
new String[]{"Lento","Adagio"}
MidiDictionary 有一个常数 ,Map<String, Integer> TEMPO_STRING_TO_INT它将速度字符串映射到每个字符串的数字速度。你可以得到那张地图的钥匙。
Map<String, Integer> TEMPO_STRING_TO_INT