AutoTweaker API
Toggle table of contents
0.1.0-alpha.35+c07218c5
common
Target filter
common
Switch theme
Search in API
Skip to content
AutoTweaker API
AutoTweaker API
/
io.github.autotweaker.api.types.config
/
SettingValue
Setting
Value
@
Serializable
sealed
class
SettingValue
<
out
T
>
(
source
)
Inheritors
ValByte
ValShort
ValInt
ValLong
ValFloat
ValDouble
ValBoolean
ValChar
ValString
Members
Types
Companion
Link copied to clipboard
object
Companion
Val
Boolean
Link copied to clipboard
@
Serializable
data
class
ValBoolean
(
val
value
:
Boolean
)
:
SettingValue
<
Boolean
>
Val
Byte
Link copied to clipboard
@
Serializable
data
class
ValByte
(
val
value
:
Byte
)
:
SettingValue
<
Byte
>
Val
Char
Link copied to clipboard
@
Serializable
data
class
ValChar
(
val
value
:
Char
)
:
SettingValue
<
Char
>
Val
Double
Link copied to clipboard
@
Serializable
data
class
ValDouble
(
val
value
:
Double
)
:
SettingValue
<
Double
>
Val
Float
Link copied to clipboard
@
Serializable
data
class
ValFloat
(
val
value
:
Float
)
:
SettingValue
<
Float
>
Val
Int
Link copied to clipboard
@
Serializable
data
class
ValInt
(
val
value
:
Int
)
:
SettingValue
<
Int
>
Val
Long
Link copied to clipboard
@
Serializable
data
class
ValLong
(
val
value
:
Long
)
:
SettingValue
<
Long
>
Val
Short
Link copied to clipboard
@
Serializable
data
class
ValShort
(
val
value
:
Short
)
:
SettingValue
<
Short
>
Val
String
Link copied to clipboard
@
Serializable
data
class
ValString
(
val
value
:
String
)
:
SettingValue
<
String
>
Properties
value
Link copied to clipboard
abstract
val
value
:
T
Functions
parse
Link copied to clipboard
abstract
fun
parse
(
raw
:
String
)
:
SettingValue
<
T
>