Field FALSE
Field type: java.lang.Boolean
Member of: java.lang.Boolean
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 static Object _C2=Boolean.FALSE;
2 return isSelected() ? Boolean.TRUE : Boolean.FALSE;
3 return b ? Boolean.TRUE.hashCode() : Boolean.FALSE.hashCode();
4 protected static Object booleanObject(boolean b) { return b ? Boolean.TRUE : Boolean.FALSE; }
5 return (a == b) ? Boolean.TRUE : Boolean.FALSE;
6 return Boolean.FALSE;
7 public static void setReplicating(boolean replicating) {_replicating.set(replicating?Boolean.TRUE:Boolean.FALSE);}
8 return rs.getBoolean(mapping.getColumnName()) ? Boolean.TRUE : Boolean.FALSE;
9 setArg("printPageNumbers", b ? Boolean.TRUE : Boolean.FALSE);
10 LOCKED = Boolean.FALSE;
11 setSettingValue(settingName, newValue ? Boolean.TRUE : Boolean.FALSE);
12 return (in.readBoolean()) ? Boolean.TRUE : Boolean.FALSE;
13 properties.put( FEATURE_NAMESPACE_PREFIXES, Boolean.FALSE );
14 return Boolean.FALSE;
15 return put(k, v ? Boolean.TRUE : Boolean.FALSE);
16 showQualified= showQualified == null ? Boolean.FALSE : showQualified;
17 hints.put(KEY_FORCE_TRANSPARENT_WHITE, Boolean.FALSE);
18 this.bold = bold ? Boolean.TRUE : Boolean.FALSE;
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.