Searched defs:nullable (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDDefine.java55 private Boolean nullable; field in class:DDefine
74 this.nullable = null;
85 if(nullable==null)
86 nullable = pattern.isNullable()?Boolean.TRUE:Boolean.FALSE;
87 return nullable.booleanValue();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/binary/
H A DBinaryPattern.java58 BinaryPattern(boolean nullable, int hc, Pattern p1, Pattern p2) { argument
59 super(nullable, Math.max(p1.getContentType(), p2.getContentType()), hc);
H A DPattern.java54 private boolean nullable; field in class:Pattern
86 Pattern(boolean nullable, int contentType, int hc) { argument
87 this.nullable = nullable;
93 this.nullable = false;
105 * Returns true if the pattern is nullable.
108 * A pattern is nullable when it can match the empty sequence.
111 return nullable;
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DRowSetMetaDataImpl.java247 throw new SQLException("Invalid nullable constant set. Must be " +
251 colInfo[columnIndex].nullable = property;
573 return colInfo[columnIndex].nullable;
972 * The field that indicates whether the value in this column is nullable.
979 public int nullable; field in class:RowSetMetaDataImpl.ColInfo
/openjdk7/jdk/src/share/classes/java/sql/
H A DDatabaseMetaData.java549 * Retrieves whether columns in this database may be defined as non-nullable.
1827 * @param nullable include columns that are nullable.
1832 String table, int scope, boolean nullable) throws SQLException;
1831 getBestRowIdentifier(String catalog, String schema, String table, int scope, boolean nullable) argument

Completed in 46 milliseconds