Class SystemSelection

java.lang.Object
com.sportradar.mbs.sdk.entities.selection.Selection
com.sportradar.mbs.sdk.entities.selection.SystemSelection

public class SystemSelection extends Selection
Represents a system selection, which is a type of selection that contains an array of selections and an array of sizes.
  • Constructor Details

    • SystemSelection

      public SystemSelection()
  • Method Details

    • newBuilder

      public static SystemSelection.Builder newBuilder()
      Creates a new instance of the SystemSelection.Builder class.
      Returns:
      A new instance of the SystemSelection.Builder class.
    • getSelections

      public Selection[] getSelections()
      Gets the array of selections contained in this system selection.
      Returns:
      The array of selections.
    • setSelections

      public void setSelections(Selection[] value)
      Sets the array of selections for this system selection.
      Parameters:
      value - The array of selections.
    • getSize

      public int[] getSize()
      Gets the array of sizes for this system selection.
      Returns:
      The array of sizes.
    • setSize

      public void setSize(int[] value)
      Sets the array of sizes for this system selection.
      Parameters:
      value - The array of sizes.