Home | History | Annotate | Download | only in options

Lines Matching refs:STRUCT

37 	public static final int STRUCT = 0x00000100;
178 return getOption(STRUCT);
188 setOption(STRUCT, value);
307 * @return Returns whether the property is of composite type - an array or a struct.
311 return (getOptions() & (ARRAY | STRUCT)) > 0;
316 * @return Returns whether the property is of composite type - an array or a struct.
320 return (getOptions() & (ARRAY | STRUCT)) == 0;
377 STRUCT |
398 case STRUCT : return "STRUCT";
410 * Checks that a node not a struct and array at the same time;
411 * and URI cannot be a struct.
418 if ((options & STRUCT) > 0 && (options & ARRAY) > 0)
423 else if ((options & URI) > 0 && (options & (ARRAY | STRUCT)) > 0)