public class MusicXMLWrapper.Notations extends NodeInterface
notations要素内で記述される情報を取り出すためのメソッドを提供します. notations要素はnote要素の子として記述され, 主に対象となる音符になんらかの 情報を付加します. たとえばスラーやフェルマータなどが該当します. 現バージョンで対応しているのは, tied, slur, tuplet, glissando, slide, articulations, fermataのみです. これらのうち, tie, slur, tuplet, glissando, slideはそれぞれが2つ以上 存在していても処理が可能で, articulationsとfermataは複数あった場合には 最初の1つだけを扱います.
修飾子とタイプ | メソッドと説明 |
---|---|
java.lang.String |
fermata()
fermata要素が存在するときにはそのテキストを返し, 存在しないときはnullを返します.
|
java.lang.String |
fermataType()
fermata要素のtype属性の値を返します. fermata要素が存在しないときはnullを返します.
|
java.util.List<MusicXMLWrapper.StartStopElement> |
getGlissandoList()
glissando要素を表すStartStopElementオブジェクトのリストを返します.
|
java.util.List<MusicXMLWrapper.StartStopElement> |
getSlideList()
slide要素を表すStartStopElementオブジェクトのリストを返します.
|
java.util.List<MusicXMLWrapper.StartStopElement> |
getSlurList()
slur要素を表すStartStopElementオブジェクトのリストを返します.
|
protected java.lang.String |
getSupportedNodeName()
Returns "notations".
|
java.util.List<MusicXMLWrapper.StartStopElement> |
getTieList()
tied要素を表すStartStopElementオブジェクトのリストを返します.
|
java.util.List<MusicXMLWrapper.StartStopElement> |
getTupletList()
tuplet要素を表すStartStopElementオブジェクトのリストを返します.
|
boolean |
hasArticulation(java.lang.String name)
articulations要素が存在し, かつ, 指定された名前の要素が
articulations要素の子として存在するときに限りtrueを返します.
|
getAttribute, getAttribute, getAttributeDouble, getAttributeDouble, getAttributeInt, getAttributeInt, getAttributeKeys, getAttributeNS, getAttributes, getChildByTagName, getChildByTagNameNS, getChildNodes, getChildText, getChildTextDouble, getChildTextInt, getFirstChild, getLastChild, getNodeName, getText, getText, getTextDouble, getTextInt, hasAttribute, hasAttribute, hasChild, node
public java.lang.String fermata()
fermata要素が存在するときにはそのテキストを返し, 存在しないときはnullを返します.
public java.lang.String fermataType()
fermata要素のtype属性の値を返します. fermata要素が存在しないときはnullを返します.
public final java.util.List<MusicXMLWrapper.StartStopElement> getGlissandoList()
glissando要素を表すStartStopElementオブジェクトのリストを返します.
public final java.util.List<MusicXMLWrapper.StartStopElement> getSlideList()
slide要素を表すStartStopElementオブジェクトのリストを返します.
public final java.util.List<MusicXMLWrapper.StartStopElement> getSlurList()
slur要素を表すStartStopElementオブジェクトのリストを返します.
protected final java.lang.String getSupportedNodeName()
Returns "notations".
getSupportedNodeName
クラス内 NodeInterface
public final java.util.List<MusicXMLWrapper.StartStopElement> getTieList()
tied要素を表すStartStopElementオブジェクトのリストを返します.
public final java.util.List<MusicXMLWrapper.StartStopElement> getTupletList()
tuplet要素を表すStartStopElementオブジェクトのリストを返します.
public boolean hasArticulation(java.lang.String name)