Field TRUE
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 _C1=Boolean.TRUE;
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.TRUE;
7 static final boolean DEBUG = Boolean.TRUE.toString().equalsIgnoreCase(InternalPlatform.getDefault().getOption(OPTION_DEBUG_JOBS));
8 public static boolean getReplicating() {return _replicating.get()==Boolean.TRUE;}
9 if (!Boolean.TRUE.equals(destRec)) {
10 setArg("printPageNumbers", b ? Boolean.TRUE : Boolean.FALSE);
11 Modified.put(config.getOwnerDocument(), Boolean.TRUE);
12 return rs.getBoolean(mapping.getColumnName()) ? Boolean.TRUE : Boolean.FALSE;
13 properties.put( FEATURE_NAMESPACE_PREFIXES, Boolean.TRUE );
14 return Boolean.TRUE;
15 return (in.readBoolean()) ? Boolean.TRUE : Boolean.FALSE;
16 if (aci.getAttribute(PREFORMATTED) == Boolean.TRUE)
17 return put(k, v ? Boolean.TRUE : Boolean.FALSE);
18 button.putClientProperty(Options.IS_NARROW_KEY, Boolean.TRUE);
19 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.