UInt32
Overview
Unsigned 32 bits integer type.
Location
- Reference: Island.fx
- Namespace: RemObjects.Elements.System
- Ancestry: ValueType | UInt32
constructor protected (declared in ValueType)
constructor
UInt32()
init()
UInt32()
Sub New()
Compares this value to another value, returns 0 if equal, -1 if less, 1 if more
method CompareTo(a: Object): Int32
Int32 CompareTo(Object a)
func CompareTo(_ a: Object) -> Int32
Int32 CompareTo(Object a)
Function CompareTo(a As Object) As Int32
Parameters:
- a:
Compares this value to another value, returns 0 if equal, -1 if less, 1 if more
method CompareTo(a: UInt32): Int32
Int32 CompareTo(UInt32 a)
func CompareTo(_ a: UInt32) -> Int32
Int32 CompareTo(UInt32 a)
Function CompareTo(a As UInt32) As Int32
Parameters:
- a:
Default constructor.
method Equals(aOther: Object): Boolean
Boolean Equals(Object aOther)
func Equals(_ aOther: Object) -> Boolean
Boolean Equals(Object aOther)
Function Equals(aOther As Object) As Boolean
Parameters:
- aOther: the reference to compare this with.
Returns true if the target object matches this one, by default compares the reference.
method Equals(obj: Object): Boolean
Boolean Equals(Object obj)
func Equals(_ obj: Object) -> Boolean
Boolean Equals(Object obj)
Function Equals(obj As Object) As Boolean
Parameters:
- obj:
Returns true if the target object matches this one, by default compares the reference.
method Equals(other: UInt32): Boolean
Boolean Equals(UInt32 other)
func Equals(_ other: UInt32) -> Boolean
Boolean Equals(UInt32 other)
Function Equals(other As UInt32) As Boolean
Parameters:
- other:
Finalize protected virtual (declared in Object)
method Finalize
void Finalize()
func Finalize()
void Finalize()
Sub Finalize()
GetHashCode override virtual
Returns a hashcode for this object. Overriden implementations should make sure that the number returned here is constant given the same object.
method GetHashCode: Int32
Int32 GetHashCode()
func GetHashCode() -> Int32
Int32 GetHashCode()
Function GetHashCode() As Int32
GetType (declared in Object)
Returns the actual type of this class
method GetType: Type
Type GetType()
func GetType() -> Type
Type GetType()
Function GetType() As Type
MaxValue
Maximum value for this type.
const MaxValue: UInt32 = 4294967295
const UInt32 MaxValue = 4294967295
static let MaxValue: UInt32 = 4294967295
static final UInt32 MaxValue = 4294967295
Const MaxValue As UInt32 = 4294967295
MinValue
Minimum value for this type.
const MinValue: UInt32 = 0
const UInt32 MinValue = 0
static let MinValue: UInt32 = 0
static final UInt32 MinValue = 0
Const MinValue As UInt32 = 0
Parse
Parses an uint32 value from a string. Returns the if succesful, else throws an exception.
class method Parse(s: String): UInt32
static UInt32 Parse(String s)
static func Parse(_ s: String) -> UInt32
static UInt32 Parse(String s)
Shared Function Parse(s As String) As UInt32
Parameters:
- s:
ReferenceEquals (declared in Object)
Compares two references for equivalence (even if they have an equals operator)
class method ReferenceEquals(a: Object; b: Object): Boolean
static Boolean ReferenceEquals(Object a, Object b)
static func ReferenceEquals(_ a: Object, _ b: Object) -> Boolean
static Boolean ReferenceEquals(Object a, Object b)
Shared Function ReferenceEquals(a As Object, b As Object) As Boolean
Parameters:
- a: left value
- b: right value
ToString override virtual
Gets the string representation of this method.
method ToString: String
String ToString()
func ToString() -> String
String ToString()
Function ToString() As String
TryParse
Parses an uint32 value from a string. Returns true if succesful.
class method TryParse(s: String; out Value: UInt32): Boolean
static Boolean TryParse(String s, out UInt32 Value)
static func TryParse(_ s: String, _ Value: inout UInt32) -> Boolean
static Boolean TryParse(String s, __out UInt32 Value)
Shared Function TryParse(s As String, <OutAttribute> ByRef Value As UInt32) As Boolean
Parameters:
- s:
- Value:
MaxValue
Maximum value for this type.
const MaxValue: UInt32 = 4294967295
const UInt32 MaxValue = 4294967295
static let MaxValue: UInt32 = 4294967295
static final UInt32 MaxValue = 4294967295
Const MaxValue As UInt32 = 4294967295
MinValue
Minimum value for this type.
const MinValue: UInt32 = 0
const UInt32 MinValue = 0
static let MinValue: UInt32 = 0
static final UInt32 MinValue = 0
Const MinValue As UInt32 = 0
Parse
Parses an uint32 value from a string. Returns the if succesful, else throws an exception.
class method Parse(s: String): UInt32
static UInt32 Parse(String s)
static func Parse(_ s: String) -> UInt32
static UInt32 Parse(String s)
Shared Function Parse(s As String) As UInt32
Parameters:
- s:
ReferenceEquals (declared in Object)
Compares two references for equivalence (even if they have an equals operator)
class method ReferenceEquals(a: Object; b: Object): Boolean
static Boolean ReferenceEquals(Object a, Object b)
static func ReferenceEquals(_ a: Object, _ b: Object) -> Boolean
static Boolean ReferenceEquals(Object a, Object b)
Shared Function ReferenceEquals(a As Object, b As Object) As Boolean
Parameters:
- a: left value
- b: right value
TryParse
Parses an uint32 value from a string. Returns true if succesful.
class method TryParse(s: String; out Value: UInt32): Boolean
static Boolean TryParse(String s, out UInt32 Value)
static func TryParse(_ s: String, _ Value: inout UInt32) -> Boolean
static Boolean TryParse(String s, __out UInt32 Value)
Shared Function TryParse(s As String, <OutAttribute> ByRef Value As UInt32) As Boolean
Parameters:
- s:
- Value:
constructor protected (declared in ValueType)
constructor
UInt32()
init()
UInt32()
Sub New()
Compares this value to another value, returns 0 if equal, -1 if less, 1 if more
method CompareTo(a: Object): Int32
Int32 CompareTo(Object a)
func CompareTo(_ a: Object) -> Int32
Int32 CompareTo(Object a)
Function CompareTo(a As Object) As Int32
Parameters:
- a:
Compares this value to another value, returns 0 if equal, -1 if less, 1 if more
method CompareTo(a: UInt32): Int32
Int32 CompareTo(UInt32 a)
func CompareTo(_ a: UInt32) -> Int32
Int32 CompareTo(UInt32 a)
Function CompareTo(a As UInt32) As Int32
Parameters:
- a:
Default constructor.
method Equals(aOther: Object): Boolean
Boolean Equals(Object aOther)
func Equals(_ aOther: Object) -> Boolean
Boolean Equals(Object aOther)
Function Equals(aOther As Object) As Boolean
Parameters:
- aOther: the reference to compare this with.
Returns true if the target object matches this one, by default compares the reference.
method Equals(obj: Object): Boolean
Boolean Equals(Object obj)
func Equals(_ obj: Object) -> Boolean
Boolean Equals(Object obj)
Function Equals(obj As Object) As Boolean
Parameters:
- obj:
Returns true if the target object matches this one, by default compares the reference.
method Equals(other: UInt32): Boolean
Boolean Equals(UInt32 other)
func Equals(_ other: UInt32) -> Boolean
Boolean Equals(UInt32 other)
Function Equals(other As UInt32) As Boolean
Parameters:
- other:
Finalize protected virtual (declared in Object)
method Finalize
void Finalize()
func Finalize()
void Finalize()
Sub Finalize()
GetHashCode override virtual
Returns a hashcode for this object. Overriden implementations should make sure that the number returned here is constant given the same object.
method GetHashCode: Int32
Int32 GetHashCode()
func GetHashCode() -> Int32
Int32 GetHashCode()
Function GetHashCode() As Int32
GetType (declared in Object)
Returns the actual type of this class
method GetType: Type
Type GetType()
func GetType() -> Type
Type GetType()
Function GetType() As Type
ToString override virtual
Gets the string representation of this method.
method ToString: String
String ToString()
func ToString() -> String
String ToString()
Function ToString() As String