final case class SquadDetail(guid: Option[Int], unk2: Option[Int], leader_char_id: Option[Long], outfit_id: Option[Long], leader_name: Option[String], task: Option[String], zone_id: Option[PlanetSideZoneID], unk7: Option[Int], member_info: Option[List[SquadPositionEntry]]) extends Product with Serializable
Information regarding a squad's position as a series of common fields.
When parsed in an itemized way, only the important fields are represented.
When parsed in a continuous manner, all of the fields are populated.
All fields are optional for that reason.
The squad leader does not necessarily have to be a person from the member_info
list.
- guid
na; must be non-zero when parsed in a FullSquad pattern
- unk2
na; not associated with any fields during itemized parsing
- leader_char_id
he unique character identification number for the squad leader
- outfit_id
na
- leader_name
the name of the player who is the squad leader
- task
the suggested responsibilities or mission statement of the squad
- zone_id
the suggested area of engagement for this squad's activities; can also indicate the zone of the squad leader
- unk7
na
- member_info
a list of squad position data
- Alphabetic
- By Inheritance
- SquadDetail
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new SquadDetail(guid: Option[Int], unk2: Option[Int], leader_char_id: Option[Long], outfit_id: Option[Long], leader_name: Option[String], task: Option[String], zone_id: Option[PlanetSideZoneID], unk7: Option[Int], member_info: Option[List[SquadPositionEntry]])
- guid
na; must be non-zero when parsed in a FullSquad pattern
- unk2
na; not associated with any fields during itemized parsing
- leader_char_id
he unique character identification number for the squad leader
- outfit_id
na
- leader_name
the name of the player who is the squad leader
- task
the suggested responsibilities or mission statement of the squad
- zone_id
the suggested area of engagement for this squad's activities; can also indicate the zone of the squad leader
- unk7
na
- member_info
a list of squad position data
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def And(info: SquadDetail): SquadDetail
Combine two
SquadDetail
objects, with priority given tothis
one.Combine two
SquadDetail
objects, with priority given tothis
one. Most fields that are not empty are assigned.- info
the object being combined
- returns
the combined
SquadDetail
object
- def Complete: SquadDetail
Complete the object by providing placeholder values for all fields.
Complete the object by providing placeholder values for all fields. The
member_info
field requires additional allocation.- returns
a
SquadDetail
object with all of its field populated
- def Field2(value: Int): SquadDetail
- def Field7(value: Int): SquadDetail
- def Guid(guid: Int): SquadDetail
- def Leader(char_id: Long, name: String): SquadDetail
- def LeaderCharId(char_id: Long): SquadDetail
- def LeaderName(name: String): SquadDetail
- def Members(list: List[SquadPositionEntry]): SquadDetail
- def OutfitId(outfit: Long): SquadDetail
- def Task(task: String): SquadDetail
- def ZoneId(zone: PlanetSideZoneID): SquadDetail
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- val guid: Option[Int]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val leader_char_id: Option[Long]
- val leader_name: Option[String]
- val member_info: Option[List[SquadPositionEntry]]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val outfit_id: Option[Long]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val task: Option[String]
- val unk2: Option[Int]
- val unk7: Option[Int]
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- val zone_id: Option[PlanetSideZoneID]