public class DummyConfigElement extends java.lang.Object implements IConfigElement
Type | Property and Description |
---|---|
boolean |
is
Gets the value of the property property.
|
Modifier and Type | Class and Description |
---|---|
static class |
DummyConfigElement.DummyCategoryElement
This class provides a Dummy Category IConfigElement.
|
static class |
DummyConfigElement.DummyListElement
This class provides a dummy array-type IConfigElement.
|
Modifier and Type | Field and Description |
---|---|
protected java.lang.Class<? extends GuiEditArrayEntries.IArrayEntry> |
arrayEntryClass |
protected java.util.List<IConfigElement> |
childElements |
protected java.lang.Class<? extends GuiConfigEntries.IConfigEntry> |
configEntryClass |
protected java.lang.Object |
defaultValue |
protected java.lang.Object[] |
defaultValues |
protected boolean |
isList |
protected boolean |
isListFixedLength |
protected boolean |
isProperty |
protected java.lang.String |
langKey |
protected int |
maxListLength |
protected java.lang.Object |
maxValue |
protected java.lang.Object |
minValue |
protected java.lang.String |
name |
protected boolean |
requiresMcRestart |
protected boolean |
requiresWorldRestart |
protected ConfigGuiType |
type |
protected java.util.regex.Pattern |
validStringPattern |
protected java.lang.String[] |
validValues |
protected java.lang.Object |
value |
protected java.lang.Object[] |
values |
Constructor and Description |
---|
DummyConfigElement(java.lang.String name,
java.lang.Object defaultValue,
ConfigGuiType type,
java.lang.String langKey) |
DummyConfigElement(java.lang.String name,
java.lang.Object defaultValue,
ConfigGuiType type,
java.lang.String langKey,
java.lang.Object minValue,
java.lang.Object maxValue) |
DummyConfigElement(java.lang.String name,
java.lang.Object defaultValue,
ConfigGuiType type,
java.lang.String langKey,
java.util.regex.Pattern validStringPattern) |
DummyConfigElement(java.lang.String name,
java.lang.Object defaultValue,
ConfigGuiType type,
java.lang.String langKey,
java.lang.String[] validValues) |
DummyConfigElement(java.lang.String name,
java.lang.Object defaultValue,
ConfigGuiType type,
java.lang.String langKey,
java.lang.String[] validValues,
java.util.regex.Pattern validStringPattern,
java.lang.Object minValue,
java.lang.Object maxValue) |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
get()
[Property] Gets this property value.
|
java.lang.Class<? extends GuiEditArrayEntries.IArrayEntry> |
getArrayEntryClass()
This method returns a class that implements
GuiEditArrayEntries.IArrayEntry . |
java.util.List<IConfigElement> |
getChildElements()
[Category] Gets this category's child categories/properties.
|
java.lang.String |
getComment()
[Property, Category] Gets the comment for this object.
|
java.lang.Class<? extends GuiConfigEntries.IConfigEntry> |
getConfigEntryClass()
This method returns a class that implements
GuiConfigEntries.IConfigEntry or null. |
java.lang.Object |
getDefault()
[Property] Gets this property's default value.
|
java.lang.Object[] |
getDefaults()
[Property] Gets this property's default values.
|
java.lang.String |
getLanguageKey()
[Property, Category] Gets a language key for localization of config GUI entry names.
|
java.lang.Object[] |
getList()
[Property] Gets this property value as a list.
|
int |
getMaxListLength()
[Property] Gets the max length of this list property, or -1 if the length is unlimited.
|
java.lang.Object |
getMaxValue()
[Property] Gets this property's maximum value.
|
java.lang.Object |
getMinValue()
[Property] Gets this property's minimum value.
|
java.lang.String |
getName()
[Property, Category] Gets the name of this object.
|
java.lang.String |
getQualifiedName()
[Category] Gets the qualified name of this object.
|
ConfigGuiType |
getType()
[Property, Category] Gets the ConfigGuiType value corresponding to the type of this property object, or CONFIG_CATEGORY if this is a
category object.
|
java.util.regex.Pattern |
getValidationPattern()
[Property] Gets a Pattern object used in String property input validation.
|
java.lang.String[] |
getValidValues()
[Property] Gets a String array of valid values for this property.
|
boolean |
isDefault()
[Property] Is this property value equal to the default value?
|
boolean |
isList()
[Property] Is this property object a list?
|
boolean |
isListLengthFixed()
[Property] Does this list property have to remain a fixed length?
|
boolean |
isProperty()
Gets the value of the property property.
|
boolean |
requiresMcRestart()
[Property, Category] Whether or not this element requires Minecraft to be restarted when changed.
|
boolean |
requiresWorldRestart()
[Property, Category] Whether or not this element is safe to modify while a world is running.
|
void |
set(java.lang.Object value)
[Property] Sets this property's value.
|
void |
set(java.lang.Object[] aVal)
[Property] Sets this property's value to the specified array.
|
IConfigElement |
setArrayEntryClass(java.lang.Class<? extends GuiEditArrayEntries.IArrayEntry> clazz) |
IConfigElement |
setConfigEntryClass(java.lang.Class<? extends GuiConfigEntries.IConfigEntry> clazz) |
DummyConfigElement |
setCustomListEntryClass(java.lang.Class<? extends GuiConfigEntries.IConfigEntry> clazz) |
IConfigElement |
setRequiresMcRestart(boolean requiresMcRestart) |
IConfigElement |
setRequiresWorldRestart(boolean requiresWorldRestart) |
void |
setToDefault()
[Property] Sets this property's value to the default value.
|
boolean |
showInGui()
[Property, Category] Whether or not this element should be allowed to show on config GUIs.
|
public boolean isProperty
isProperty
in interface IConfigElement
protected boolean isProperty
protected boolean isList
protected ConfigGuiType type
protected java.lang.String name
protected java.lang.String langKey
protected java.lang.Object value
protected java.lang.Object defaultValue
protected java.lang.Object[] values
protected java.lang.Object[] defaultValues
protected java.lang.String[] validValues
protected java.util.regex.Pattern validStringPattern
protected java.lang.Object minValue
protected java.lang.Object maxValue
protected boolean requiresWorldRestart
protected boolean requiresMcRestart
protected boolean isListFixedLength
protected int maxListLength
protected java.util.List<IConfigElement> childElements
@Nullable protected java.lang.Class<? extends GuiConfigEntries.IConfigEntry> configEntryClass
protected java.lang.Class<? extends GuiEditArrayEntries.IArrayEntry> arrayEntryClass
public DummyConfigElement(java.lang.String name, java.lang.Object defaultValue, ConfigGuiType type, java.lang.String langKey, java.lang.String[] validValues, java.util.regex.Pattern validStringPattern, java.lang.Object minValue, java.lang.Object maxValue)
public DummyConfigElement(java.lang.String name, java.lang.Object defaultValue, ConfigGuiType type, java.lang.String langKey, java.util.regex.Pattern validStringPattern)
public DummyConfigElement(java.lang.String name, java.lang.Object defaultValue, ConfigGuiType type, java.lang.String langKey, java.lang.String[] validValues)
public DummyConfigElement(java.lang.String name, java.lang.Object defaultValue, ConfigGuiType type, java.lang.String langKey)
public DummyConfigElement(java.lang.String name, java.lang.Object defaultValue, ConfigGuiType type, java.lang.String langKey, java.lang.Object minValue, java.lang.Object maxValue)
public DummyConfigElement setCustomListEntryClass(java.lang.Class<? extends GuiConfigEntries.IConfigEntry> clazz)
public boolean isProperty()
isProperty
in interface IConfigElement
public IConfigElement setConfigEntryClass(java.lang.Class<? extends GuiConfigEntries.IConfigEntry> clazz)
public java.lang.Class<? extends GuiConfigEntries.IConfigEntry> getConfigEntryClass()
IConfigElement
GuiConfigEntries.IConfigEntry
or null. This class MUST
provide a constructor with the following parameter types: GuiConfig
, GuiConfigEntries
, IConfigElement
getConfigEntryClass
in interface IConfigElement
GuiConfigEntries.ListEntryBase
,
GuiConfigEntries.StringEntry
,
GuiConfigEntries.BooleanEntry
,
GuiConfigEntries.DoubleEntry
,
GuiConfigEntries.IntegerEntry
public IConfigElement setArrayEntryClass(java.lang.Class<? extends GuiEditArrayEntries.IArrayEntry> clazz)
public java.lang.Class<? extends GuiEditArrayEntries.IArrayEntry> getArrayEntryClass()
IConfigElement
GuiEditArrayEntries.IArrayEntry
. This class MUST provide a constructor with the
following parameter types: GuiEditArray
, GuiEditArrayEntries
, IConfigElement
, Object
getArrayEntryClass
in interface IConfigElement
GuiEditArrayEntries.BaseEntry
,
GuiEditArrayEntries.StringEntry
,
GuiEditArrayEntries.BooleanEntry
,
GuiEditArrayEntries.DoubleEntry
,
GuiEditArrayEntries.IntegerEntry
public java.lang.String getName()
IConfigElement
getName
in interface IConfigElement
public java.lang.String getQualifiedName()
IConfigElement
getQualifiedName
in interface IConfigElement
public java.lang.String getLanguageKey()
IConfigElement
getLanguageKey
in interface IConfigElement
public java.lang.String getComment()
IConfigElement
getComment
in interface IConfigElement
public java.util.List<IConfigElement> getChildElements()
IConfigElement
getChildElements
in interface IConfigElement
public ConfigGuiType getType()
IConfigElement
getType
in interface IConfigElement
public boolean isList()
IConfigElement
isList
in interface IConfigElement
public boolean isListLengthFixed()
IConfigElement
isListLengthFixed
in interface IConfigElement
public int getMaxListLength()
IConfigElement
getMaxListLength
in interface IConfigElement
public boolean isDefault()
IConfigElement
isDefault
in interface IConfigElement
public java.lang.Object getDefault()
IConfigElement
getDefault
in interface IConfigElement
public java.lang.Object[] getDefaults()
IConfigElement
getDefaults
in interface IConfigElement
public void setToDefault()
IConfigElement
setToDefault
in interface IConfigElement
public IConfigElement setRequiresWorldRestart(boolean requiresWorldRestart)
public boolean requiresWorldRestart()
IConfigElement
requiresWorldRestart
in interface IConfigElement
public boolean showInGui()
IConfigElement
showInGui
in interface IConfigElement
public IConfigElement setRequiresMcRestart(boolean requiresMcRestart)
public boolean requiresMcRestart()
IConfigElement
requiresMcRestart
in interface IConfigElement
public java.lang.String[] getValidValues()
IConfigElement
getValidValues
in interface IConfigElement
public java.util.regex.Pattern getValidationPattern()
IConfigElement
getValidationPattern
in interface IConfigElement
public java.lang.Object get()
IConfigElement
get
in interface IConfigElement
public java.lang.Object[] getList()
IConfigElement
getList
in interface IConfigElement
public void set(java.lang.Object value)
IConfigElement
set
in interface IConfigElement
public void set(java.lang.Object[] aVal)
IConfigElement
set
in interface IConfigElement
public java.lang.Object getMinValue()
IConfigElement
getMinValue
in interface IConfigElement
public java.lang.Object getMaxValue()
IConfigElement
getMaxValue
in interface IConfigElement