當前位置: 首頁>>代碼示例>>Java>>正文


Java LongConstant類代碼示例

本文整理匯總了Java中org.eclipse.jdt.internal.compiler.impl.LongConstant的典型用法代碼示例。如果您正苦於以下問題:Java LongConstant類的具體用法?Java LongConstant怎麽用?Java LongConstant使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


LongConstant類屬於org.eclipse.jdt.internal.compiler.impl包,在下文中一共展示了LongConstant類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: computeValue

import org.eclipse.jdt.internal.compiler.impl.LongConstant; //導入依賴的package包/類
private void computeValue(char[] token, int tokenLength, int radix, int j) {
	int digitValue;
	long computedValue = 0;
	while (j < tokenLength) {
		if ((digitValue = ScannerHelper.digit(token[j++],radix)) < 0) {
			return; /*constant stays null*/
		}
		computedValue = (computedValue * radix) + digitValue ;
	}
	this.constant = LongConstant.fromValue(computedValue);
}
 
開發者ID:trylimits,項目名稱:Eclipse-Postfix-Code-Completion,代碼行數:12,代碼來源:LongLiteral.java

示例2: getConstantValue

import org.eclipse.jdt.internal.compiler.impl.LongConstant; //導入依賴的package包/類
@Nullable
private Object getConstantValue(@Nullable Object value) {
    if (value instanceof Constant) {
        if (value == Constant.NotAConstant) {
            return null;
        }
        if (value instanceof StringConstant) {
            return ((StringConstant) value).stringValue();
        } else if (value instanceof IntConstant) {
            return ((IntConstant) value).intValue();
        } else if (value instanceof BooleanConstant) {
            return ((BooleanConstant) value).booleanValue();
        } else if (value instanceof FloatConstant) {
            return ((FloatConstant) value).floatValue();
        } else if (value instanceof LongConstant) {
            return ((LongConstant) value).longValue();
        } else if (value instanceof DoubleConstant) {
            return ((DoubleConstant) value).doubleValue();
        } else if (value instanceof ShortConstant) {
            return ((ShortConstant) value).shortValue();
        } else if (value instanceof CharConstant) {
            return ((CharConstant) value).charValue();
        } else if (value instanceof ByteConstant) {
            return ((ByteConstant) value).byteValue();
        }
    } else if (value instanceof Object[]) {
        Object[] array = (Object[]) value;
        if (array.length > 0) {
            List<Object> list = Lists.newArrayListWithExpectedSize(array.length);
            for (Object element : array) {
                list.add(getConstantValue(element));
            }
            // Pick type of array. Annotations are limited to Strings, Classes
            // and Annotations
            if (!list.isEmpty()) {
                Object first = list.get(0);
                if (first instanceof String) {
                    //noinspection SuspiciousToArrayCall
                    return list.toArray(new String[list.size()]);
                } else if (first instanceof java.lang.annotation.Annotation) {
                    //noinspection SuspiciousToArrayCall
                    return list.toArray(new Annotation[list.size()]);
                } else if (first instanceof Class) {
                    //noinspection SuspiciousToArrayCall
                    return list.toArray(new Class[list.size()]);
                }
            }

            return list.toArray();
        }
    } else if (value instanceof AnnotationBinding) {
        return new EcjResolvedAnnotation((AnnotationBinding) value);
    }

    return value;
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:57,代碼來源:EcjParser.java


注:本文中的org.eclipse.jdt.internal.compiler.impl.LongConstant類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。