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


Java Utils.getSuperType方法代碼示例

本文整理匯總了Java中ch.njol.skript.util.Utils.getSuperType方法的典型用法代碼示例。如果您正苦於以下問題:Java Utils.getSuperType方法的具體用法?Java Utils.getSuperType怎麽用?Java Utils.getSuperType使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ch.njol.skript.util.Utils的用法示例。


在下文中一共展示了Utils.getSuperType方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: ExprJavaCall

import ch.njol.skript.util.Utils; //導入方法依賴的package包/類
@SuppressWarnings("unchecked")
@SafeVarargs
private ExprJavaCall(ExprJavaCall<?> source, Class<? extends T>... types) {
  this.source = source;

  if (source != null) {
    this.targetArg = source.targetArg;
    this.args = source.args;
    this.type = source.type;
    this.suppressErrors = source.suppressErrors;
    this.staticDescriptor = source.staticDescriptor;
    this.dynamicDescriptor = source.dynamicDescriptor;
  }

  this.types = types;
  this.superType = (Class<T>) Utils.getSuperType(types);
}
 
開發者ID:btk5h,項目名稱:skript-mirror,代碼行數:18,代碼來源:ExprJavaCall.java

示例2: getConvertedExpr

import ch.njol.skript.util.Utils; //導入方法依賴的package包/類
@SuppressWarnings("unchecked")
@Override
@Nullable
protected <R> ConvertedExpression<Object, ? extends R> getConvertedExpr(final Class<R>... to) {
	if (isVariableLoop && !isIndex) {
		return new ConvertedExpression<Object, R>(this, (Class<R>) Utils.getSuperType(to), new Converter<Object, R>() {
			@Override
			@Nullable
			public R convert(final Object o) {
				return Converters.convert(o, to);
			}
		});
	} else {
		return super.getConvertedExpr(to);
	}
}
 
開發者ID:nfell2009,項目名稱:Skript,代碼行數:17,代碼來源:ExprLoopValue.java

示例3: ExprExpression

import ch.njol.skript.util.Utils; //導入方法依賴的package包/類
@SuppressWarnings("unchecked")
@SafeVarargs
private ExprExpression(ExprExpression<?> source, Class<? extends T>... types) {
  if (source != null) {
    index = source.index;
    plural = source.plural;
  }

  this.source = source;
  this.types = types;
  this.superType = (Class<T>) Utils.getSuperType(types);
}
 
開發者ID:btk5h,項目名稱:skript-mirror,代碼行數:13,代碼來源:ExprExpression.java

示例4: ExpressionHandler

import ch.njol.skript.util.Utils; //導入方法依賴的package包/類
@SuppressWarnings("unchecked")
@SafeVarargs
private ExpressionHandler(ExpressionHandler<?> source, Class<? extends T>... types) {
  this.source = source;

  if (source != null) {
    this.which = source.which;
    this.exprs = source.exprs;
    this.parseResult = source.parseResult;
  }

  this.types = types;
  this.superType = (Class<T>) Utils.getSuperType(types);
}
 
開發者ID:btk5h,項目名稱:skript-mirror,代碼行數:15,代碼來源:CustomExpression.java

示例5: ExprChangeValue

import ch.njol.skript.util.Utils; //導入方法依賴的package包/類
@SuppressWarnings("unchecked")
@SafeVarargs
private ExprChangeValue(ExprChangeValue<?> source, Class<? extends T>... types) {
  if (source != null) {
    index = source.index;
    plural = source.plural;
  }

  this.source = source;
  this.types = types;
  this.superType = (Class<T>) Utils.getSuperType(types);
}
 
開發者ID:btk5h,項目名稱:skript-mirror,代碼行數:13,代碼來源:ExprChangeValue.java

示例6: ExprSpread

import ch.njol.skript.util.Utils; //導入方法依賴的package包/類
@SuppressWarnings("unchecked")
@SafeVarargs
private ExprSpread(ExprSpread<?> source, Class<? extends T>... types) {
  this.source = source;

  if (source != null) {
    this.object = source.object;
  }

  this.types = types;
  this.superType = (Class<T>) Utils.getSuperType(types);
}
 
開發者ID:btk5h,項目名稱:skript-mirror,代碼行數:13,代碼來源:ExprSpread.java

示例7: getConvertedExpression

import ch.njol.skript.util.Utils; //導入方法依賴的package包/類
@SuppressWarnings("unchecked")
@Override
@Nullable
public <R> Literal<? extends R> getConvertedExpression(final Class<R>... to) {
	final Literal<? extends R>[] exprs = new Literal[expressions.length];
	final Class<?>[] classes = new Class[expressions.length];
	for (int i = 0; i < exprs.length; i++) {
		if ((exprs[i] = (Literal<? extends R>) expressions[i].getConvertedExpression(to)) == null)
			return null;
		classes[i] = exprs[i].getReturnType();
	}
	return new LiteralList<R>(exprs, (Class<R>) Utils.getSuperType(classes), and, this);
}
 
開發者ID:nfell2009,項目名稱:Skript,代碼行數:14,代碼來源:LiteralList.java

示例8: getConvertedExpression

import ch.njol.skript.util.Utils; //導入方法依賴的package包/類
@SuppressWarnings("unchecked")
@Override
@Nullable
public <R> Expression<? extends R> getConvertedExpression(final Class<R>... to) {
	final Expression<? extends R>[] exprs = new Expression[expressions.length];
	for (int i = 0; i < exprs.length; i++)
		if ((exprs[i] = expressions[i].getConvertedExpression(to)) == null)
			return null;
	return new ExpressionList<R>(exprs, (Class<R>) Utils.getSuperType(to), and, this);
}
 
開發者ID:nfell2009,項目名稱:Skript,代碼行數:11,代碼來源:ExpressionList.java

示例9: getConvertedExpression

import ch.njol.skript.util.Utils; //導入方法依賴的package包/類
@SuppressWarnings("unchecked")
@Override
@Nullable
public <R> Literal<? extends R> getConvertedExpression(final Class<R>... to) {
	if (CollectionUtils.containsSuperclass(to, c))
		return (Literal<? extends R>) this;
	final R[] parsedData = Converters.convertArray(data, to, (Class<R>) Utils.getSuperType(to));
	if (parsedData.length != data.length)
		return null;
	return new ConvertedLiteral<T, R>(this, parsedData, (Class<R>) Utils.getSuperType(to));
}
 
開發者ID:nfell2009,項目名稱:Skript,代碼行數:12,代碼來源:SimpleLiteral.java


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