- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.geotools.resources.XMath.isInteger()
方法的一些代码示例,展示了XMath.isInteger()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XMath.isInteger()
方法的具体详情如下:
包路径:org.geotools.resources.XMath
类名称:XMath
方法名:isInteger
[英]Returns true if the specified type is one of integer types. Integer types includes Long, Integer, Short and Byte.
[中]如果指定的类型是整数类型之一,则返回true。整数类型包括长、整数、短和字节。
代码示例来源:origin: org.geotools/gt2-metadata
/**
* Formats the specified number.
*/
private String format(final Number value) {
if (numberFormat == null) {
numberFormat = NumberFormat.getNumberInstance(locale);
numberFormat.setMinimumFractionDigits(0);
}
int precision = 0;
if (!XMath.isInteger(value.getClass())) {
precision = PRECISION;
final double v = Math.abs(value.doubleValue());
if (v > 0) {
final int digits = (int) XMath.log10(v);
if (Math.abs(digits) >= PRECISION) {
// TODO: Switch to exponential notation when a convenient API will be available in J2SE.
return value.toString();
}
if (digits >= 0) {
precision -= digits;
}
precision = Math.max(0, PRECISION - precision);
}
}
numberFormat.setMaximumFractionDigits(precision);
return numberFormat.format(value);
}
代码示例来源:origin: org.geotools/gt2-coverage
/**
* Returns a string representation of this category.
* The returned string is implementation dependent.
* It is usually provided for debugging purposes.
*/
public String toString() {
final StringBuffer buffer = new StringBuffer(Utilities.getShortClassName(this));
buffer.append("(\"");
buffer.append(name);
buffer.append("\":[");
if (Double.isNaN(minimum) && Double.isNaN(maximum)) {
buffer.append("NaN(");
buffer.append(Math.round(inverse.minimum));
buffer.append("...");
buffer.append(Math.round(inverse.maximum));
buffer.append(')');
} else {
if (XMath.isInteger(getRange().getElementClass())) {
buffer.append(Math.round(minimum));
buffer.append("...");
buffer.append(Math.round(maximum)); // Inclusive
} else {
buffer.append(minimum);
buffer.append(" ... ");
buffer.append(maximum); // Inclusive
}
}
buffer.append("])");
return buffer.toString();
}
代码示例来源:origin: org.geotools/gt2-widgets-swing
/**
* Set the type and the range of valid values.
*/
public void setValueRange(Class classe, final Range range) {
String type = null;
String minimum = null;
String maximum = null;
if (classe != null) {
while (classe.isArray()) {
classe = classe.getComponentType();
}
classe = XMath.primitiveToWrapper(classe);
boolean isInteger = false;
if (XMath.isReal(classe) || (isInteger=XMath.isInteger(classe))==true) {
type = Vocabulary.format(isInteger ? VocabularyKeys.SIGNED_INTEGER_$1
: VocabularyKeys.REAL_NUMBER_$1,
new Integer(XMath.getBitCount(classe)));
} else {
type = Utilities.getShortName(classe);
}
}
if (range != null) {
minimum = format(range.getMinValue());
maximum = format(range.getMaxValue());
}
this.type .setText(type);
this.minimum.setText(minimum);
this.maximum.setText(maximum);
}
代码示例来源:origin: org.geotools/gt-metadata
if (isInteger(type)) {
return value + amount;
代码示例来源:origin: org.geotools/gt2-metadata
if (isInteger(type)) {
return value + amount;
代码示例来源:origin: org.geotools/gt2-coverage
final boolean adjustSamples = (XMath.isInteger(sType) && !XMath.isInteger(gType));
if ((adjustSamples ? gMinInc : sMinInc) != 0) {
int swap = sMinInc;
代码示例来源:origin: org.geotools/gt2-coverage
int upper = (int) max;
if (lower!=min || upper!=max ||
!XMath.isInteger(category.getRange().getElementClass()))
本文整理了Java中org.geotools.resources.XMath.isInteger()方法的一些代码示例,展示了XMath.isInteger()的具体用法。这些代码示例主要来源于Git
如果数组包含所有整数,我想检查返回 true,否则返回 false。我正在尝试使用每种方法 MDN docs every . 因此,如果给定“1234”,它将返回 true,如果给定“123a”,它将
在 SQL Server (2000/2005/2008) 中确定字段值是否为整数的最佳方法是什么? IsNumeric 对于多种不太可能转换为整数的格式返回 true。示例包括“15,000”和“1
我一直在 chrome 控制台上尝试 Number.isInteger() 方法。在执行 for 循环并使用 console.log(arr); 检查结果后,我得到一个只有一个值为 1 的数组。就像这
function bereken() { input1 = document.getElementById('input1').value; input2 = document.getElem
当我按下按钮时,它会从文本区域检索一个值HTML 代码 Javascript代码 var res = myVar[0]; var ress = 4567891; var val1 = Number
使用 Node.js 4.5.0 我得到了预期的行为 > console.log(Number.isInteger(42)) true 但是使用 Node.js 0.10.36 我得到了错误 > co
Number.prototype.isInteger = Number.prototype.isInteger || function(x) { return (x ^ 0) === x; } c
Node.js 的“数字”类中缺少一些方法和字段。例如, console.log(Number.isInteger(5)); 给出,“TypeError: Object function Number
我正在解决 freecodecamp.org 的 Javascript ES6 编码问题,其中一个问题要求我使用箭头函数表示法来: 取一组实数。 仅将正整数过滤到新数组中,并且 对这些正整数进行平方。
我在 Internet Explorer 控制台中遇到此错误“对象不支持属性或方法‘isInteger’”,我该如何解决? 代码: function verificaNota(nota){
我是一名优秀的程序员,十分优秀!