私はAndEngineプロジェクトからリポジトリをクローンした後に、このエラーを取得しておく。.. タイプの列挙型は、一般的なエラークローニングandengine
Enum型
はジェネリックではないではありません。引数を使用してパラメータ化することはできません。<BoundsSplit>
ここにはエラーが続くクラスがあります。
package org.andengine.util.spatial.adt.bounds; //The error points at the beginning of this line.
import org.andengine.util.exception.AndEngineException;
/**
* (c) Zynga 2011
*
* @author Nicolas Gramlich <[email protected]>
* @since 21:13:32 - 11.10.2011
*/
public enum BoundsSplit {
// ===========================================================
// Elements
// ===========================================================
TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT;
// ===========================================================
// Constants
// ===========================================================
// ===========================================================
// Fields
// ===========================================================
// ===========================================================
// Constructors
// ===========================================================
// ===========================================================
// Getter & Setter
// ===========================================================
// ===========================================================
// Methods for/from SuperClass/Interfaces
// ===========================================================
// ===========================================================
// Methods
// ===========================================================
// ===========================================================
// Inner and Anonymous Classes
// ===========================================================
public static class BoundsSplitException extends AndEngineException {
// ===========================================================
// Constants
// ===========================================================
private static final long serialVersionUID = 7970869239897412727L;
// ===========================================================
// Fields
// ===========================================================
// ===========================================================
// Constructors
// ===========================================================
// ===========================================================
// Getter & Setter
// ===========================================================
// ===========================================================
// Methods for/from SuperClass/Interfaces
// ===========================================================
// ===========================================================
// Methods
// ===========================================================
// ===========================================================
// Inner and Anonymous Classes
// ===========================================================
}
}
編集:ここでは
は、エラーが
Multiple markers at this line
- The type java.lang.Enum cannot be resolved. It is indirectly referenced from
required .class files
- The type Enum is not generic; it cannot be parameterized with arguments
<BoundsSplit>
- The type java.lang.Object cannot be resolved. It is indirectly referenced from
required .class files
- The type java.lang.Enum cannot be resolved. It is indirectly referenced from
required .class files
をより良いものを取得します'enum'内の適切なコンストラクタを宣言するJavaの' enum'内のメンバーは必須です。 'private''明示的に' private'を宣言するかどうかは 'always' *' private'です。 'enum'内に適切なコンストラクタを指定しましたか? – Lion
私が行ったのは、https://github.com/twalkerjr22/AndEngineのリポジトリをクローンしていて、エラーが続いていたことです。私は前にそれを得たことはありません。 –
追加したばかりの新しい編集を確認してください –