Package mondrian.xmla.impl
Class DefaultSaxWriter.StringAttributes
- java.lang.Object
-
- mondrian.xmla.impl.DefaultSaxWriter.StringAttributes
-
- All Implemented Interfaces:
Attributes
- Enclosing class:
- DefaultSaxWriter
public static class DefaultSaxWriter.StringAttributes extends Object implements Attributes
List of SAX attributes based upon a string array.
-
-
Constructor Summary
Constructors Constructor Description StringAttributes(Object[] strings)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getIndex(String qName)
int
getIndex(String uri, String localName)
int
getLength()
String
getLocalName(int index)
String
getQName(int index)
String
getType(int index)
String
getType(String qName)
String
getType(String uri, String localName)
String
getURI(int index)
String
getValue(int index)
String
getValue(String qName)
String
getValue(String uri, String localName)
-
-
-
Constructor Detail
-
StringAttributes
public StringAttributes(Object[] strings)
-
-
Method Detail
-
getLength
public int getLength()
- Specified by:
getLength
in interfaceAttributes
-
getURI
public String getURI(int index)
- Specified by:
getURI
in interfaceAttributes
-
getLocalName
public String getLocalName(int index)
- Specified by:
getLocalName
in interfaceAttributes
-
getQName
public String getQName(int index)
- Specified by:
getQName
in interfaceAttributes
-
getType
public String getType(int index)
- Specified by:
getType
in interfaceAttributes
-
getValue
public String getValue(int index)
- Specified by:
getValue
in interfaceAttributes
-
getIndex
public int getIndex(String uri, String localName)
- Specified by:
getIndex
in interfaceAttributes
-
getIndex
public int getIndex(String qName)
- Specified by:
getIndex
in interfaceAttributes
-
getType
public String getType(String uri, String localName)
- Specified by:
getType
in interfaceAttributes
-
getType
public String getType(String qName)
- Specified by:
getType
in interfaceAttributes
-
getValue
public String getValue(String uri, String localName)
- Specified by:
getValue
in interfaceAttributes
-
getValue
public String getValue(String qName)
- Specified by:
getValue
in interfaceAttributes
-
-