public class Base64BinaryAttribute extends AttributeValue
| Modifier and Type | Field and Description |
|---|---|
static String |
identifier
Official name of this type
|
| Constructor and Description |
|---|
Base64BinaryAttribute(byte[] value)
Creates a new
Base64BinaryAttribute that represents the byte [] value supplied. |
| Modifier and Type | Method and Description |
|---|---|
String |
encode()
Encodes the value in a form suitable for including in XML data like a request or an
obligation.
|
boolean |
equals(Object o)
Returns true if the input is an instance of this class and if its value equals the value
contained in this class.
|
static Base64BinaryAttribute |
getInstance(Node root)
Returns a new
Base64BinaryAttribute that represents the xsi:base64Binary at a
particular DOM node. |
static Base64BinaryAttribute |
getInstance(String value)
Returns a new
Base64BinaryAttribute that represents the xsi:base64Binary value
indicated by the string provided. |
byte[] |
getValue()
Returns the
byte [] value represented by this object. |
int |
hashCode()
Returns the hashcode value used to index and compare this object with others of the same
type.
|
String |
toString()
Returns a String representation.
|
encode, encodeWithTags, evaluate, evaluatesToBag, getChildren, getType, isBag, returnsBagpublic static final String identifier
public Base64BinaryAttribute(byte[] value)
Base64BinaryAttribute that represents the byte [] value supplied.value - the byte [] value to be representedpublic static Base64BinaryAttribute getInstance(Node root) throws ParsingException
Base64BinaryAttribute that represents the xsi:base64Binary at a
particular DOM node.root - the Node that contains the desired valueBase64BinaryAttribute representing the appropriate valueParsingException - if a parsing error occurspublic static Base64BinaryAttribute getInstance(String value) throws ParsingException
Base64BinaryAttribute that represents the xsi:base64Binary value
indicated by the string provided.value - a string representing the desired valueBase64BinaryAttribute representing the desired valueParsingException - if a parsing error occurspublic byte[] getValue()
byte [] value represented by this object. Note that this value is
cloned before returning to prevent unauthorized modifications.byte [] valuepublic boolean equals(Object o)
public int hashCode()
public String toString()
public String encode()
AttributeValueencode in class AttributeValueString form of the valueCopyright © 2018 WSO2. All rights reserved.