Method valueOf(long l)
Return type:
java.lang.String
Member of:
java.lang.String
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
return String.valueOf(Long.MAX_VALUE).length();
2
return String.valueOf(Long.MAX_VALUE).length();
3
return Long.parseLong(System.getProperty(prop, String.valueOf(def)));
4
return Long.parseLong(props.getProperty(prop, String.valueOf(def)));
5
protected final void note(long v) { note(String.valueOf(v)); }
6
return append(String.valueOf(l));
7
print(String.valueOf(l));
8
write(String.valueOf(l));
9
_id = "ID" + String.valueOf(System.currentTimeMillis());
10
svcproperties.setProperty("memberDropTime",String.valueOf(time));
11
append(String.valueOf(value));
12
svcproperties.setProperty("msgFrequency",String.valueOf(time));
13
super(String.valueOf(id));
14
putParameter(parameterIndex, String.valueOf(x));
15
size.setText(String.valueOf(assertion.getAllowedSize()));
16
traceCaller(String.valueOf(l));
17
write(String.valueOf(x).concat(getNewLine()));
18
this.primaryKey = new NumberKey(String.valueOf(primaryKey));
19
max = Long.parseLong(modeConf.getChild("max").getValue(String.valueOf(max)));
20
ps.setBigDecimal(4, new BigDecimal( String.valueOf( trigger.getRepeatInterval() ) ));
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.