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


Java DecayableData類代碼示例

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


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

示例1: LeavesDataConverter

import org.spongepowered.api.data.manipulator.mutable.block.DecayableData; //導入依賴的package包/類
@SuppressWarnings("rawtypes")
private LeavesDataConverter() {
    converters.put(
            ImmutableBiMap.<AbstractDataValue, Byte>builder()
                    .put(new LogDataConverter.TreeDataValue(TreeTypes.OAK), (byte) 0)
                    .put(new LogDataConverter.TreeDataValue(TreeTypes.SPRUCE), (byte) 1)
                    .put(new LogDataConverter.TreeDataValue(TreeTypes.BIRCH), (byte) 2)
                    .put(new LogDataConverter.TreeDataValue(TreeTypes.JUNGLE), (byte) 3)
                    .build(),
            (byte) 2
    );
    applicableTypes.add(TreeData.class);
    converters.put(
            ImmutableBiMap.<AbstractDataValue, Byte>builder()
                    .put(new DecayableDataValue(false), (byte) 0)
                    .put(new DecayableDataValue(true), (byte) 1)
                    .build(),
            (byte) 1
    );
    applicableTypes.add(DecayableData.class);
}
 
開發者ID:LapisBlue,項目名稱:Pore,代碼行數:22,代碼來源:LeavesDataConverter.java

示例2: Leaves2DataConverter

import org.spongepowered.api.data.manipulator.mutable.block.DecayableData; //導入依賴的package包/類
@SuppressWarnings("rawtypes")
private Leaves2DataConverter() {
    converters.put(
            ImmutableBiMap.<AbstractDataValue, Byte>builder()
                    .put(new TreeDataValue(TreeTypes.ACACIA), (byte) 0)
                    .put(new TreeDataValue(TreeTypes.DARK_OAK), (byte) 1)
                    .build(),
            (byte) 2
    );
    applicableTypes.add(TreeData.class);
    converters.put(
            ImmutableBiMap.<AbstractDataValue, Byte>builder()
                    .put(new DecayableDataValue(false), (byte) 0)
                    .put(new DecayableDataValue(true), (byte) 1)
                    .build(),
            (byte) 1
    );
    applicableTypes.add(DecayableData.class);
}
 
開發者ID:LapisBlue,項目名稱:Pore,代碼行數:20,代碼來源:Leaves2DataConverter.java

示例3: DecayableDataView

import org.spongepowered.api.data.manipulator.mutable.block.DecayableData; //導入依賴的package包/類
public DecayableDataView(DecayableData value) {
    super(value);

    this.decayable = value.decayable().get();
}
 
開發者ID:Valandur,項目名稱:Web-API,代碼行數:6,代碼來源:DecayableDataView.java

示例4: DecayableDataValue

import org.spongepowered.api.data.manipulator.mutable.block.DecayableData; //導入依賴的package包/類
DecayableDataValue(boolean flag) {
    super(DecayableData.class, flag ? FLAG : ABSENT);
}
 
開發者ID:LapisBlue,項目名稱:Pore,代碼行數:4,代碼來源:LeavesDataConverter.java


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