Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 16 17 package org.apache.xerces.xs; 18 19 23 public interface ItemPSVI { 24 28 public static final short VALIDITY_NOTKNOWN = 0; 29 34 public static final short VALIDITY_INVALID = 1; 35 40 public static final short VALIDITY_VALID = 2; 41 45 public static final short VALIDATION_NONE = 0; 46 50 public static final short VALIDATION_PARTIAL = 1; 51 55 public static final short VALIDATION_FULL = 2; 56 62 public String getValidationContext(); 63 64 70 public short getValidity(); 71 72 78 public short getValidationAttempted(); 79 80 85 public StringList getErrorCodes(); 86 87 91 public String getSchemaNormalizedValue(); 92 93 100 public Object getActualNormalizedValue() 101 throws XSException; 102 103 118 public short getActualNormalizedValueType() 119 throws XSException; 120 121 152 public ShortList getItemValueTypes() 153 throws XSException; 154 155 159 public XSTypeDefinition getTypeDefinition(); 160 161 169 public XSSimpleTypeDefinition getMemberTypeDefinition(); 170 171 176 public String getSchemaDefault(); 177 178 183 public boolean getIsSchemaSpecified(); 184 185 } 186
| Popular Tags
|