DOCUMENT ME!
990991992993994995996997998999
"inapplicable", "unknown", "unavailable", "missing" }; if (Arrays.binarySearch(enumeration, value) < 0) { // not found return new AttributeValueGT(attribute, null); } return new AttributeValueGT(attribute, value.toString()); }
366367368369370371372373374375
* java.lang.Object, java.util.Map) */ public AttributeValue toAttribute(Attribute attribute, Object value, Map hints) { if (canCreateAttributes(attribute, value, hints)) { return new AttributeValueGT(attribute, (String) value); } return null; }
434435436437438439440441442443
570571572573574575576
return null; } public AttributeValue toAttribute(Attribute attribute, Object value, Map hints) throws OperationNotSupportedException { return new AttributeValueGT(attribute, value.toString()); }
276277278279280281282
* @see org.geotools.xml.schema.SimpleType#toAttribute(org.geotools.xml.schema.Attribute, * java.lang.Object, java.util.Map) */ public AttributeValue toAttribute(Attribute attribute, Object value, Map hints) { return new AttributeValueGT(attribute, value.toString()); }