Class: NBA::DraftBoardPick
- Inherits:
-
Shale::Mapper
- Object
- Shale::Mapper
- NBA::DraftBoardPick
- Defined in:
- lib/nba/draft_board_pick.rb
Overview
Represents a draft board pick
Instance Attribute Summary collapse
-
#age ⇒ Float
Returns the player age.
-
#birthdate ⇒ String
Returns the birthdate.
-
#height ⇒ String
Returns the player height.
-
#jersey_number ⇒ String
Returns the jersey number.
-
#organization ⇒ String
Returns the organization name.
-
#organization_type ⇒ String
Returns the organization type.
-
#overall_pick ⇒ Integer
Returns the overall pick number.
-
#person_id ⇒ Integer
Returns the person ID.
-
#player_name ⇒ String
Returns the player name.
-
#position ⇒ String
Returns the player position.
-
#round_number ⇒ Integer
Returns the draft round number.
-
#round_pick ⇒ Integer
Returns the pick number in the round.
-
#season ⇒ String
Returns the draft season.
-
#team_abbreviation ⇒ String
Returns the team abbreviation.
-
#team_city ⇒ String
Returns the team city.
-
#team_id ⇒ Integer
Returns the team ID.
-
#team_name ⇒ String
Returns the team name.
-
#weight ⇒ String
Returns the player weight.
Instance Method Summary collapse
-
#player ⇒ Player?
Returns the player object.
-
#team ⇒ Team?
Returns the team object.
Instance Attribute Details
#age ⇒ Float
Returns the player age
151 |
# File 'lib/nba/draft_board_pick.rb', line 151 attribute :age, Shale::Type::Float |
#birthdate ⇒ String
Returns the birthdate
143 |
# File 'lib/nba/draft_board_pick.rb', line 143 attribute :birthdate, Shale::Type::String |
#height ⇒ String
Returns the player height
111 |
# File 'lib/nba/draft_board_pick.rb', line 111 attribute :height, Shale::Type::String |
#jersey_number ⇒ String
Returns the jersey number
135 |
# File 'lib/nba/draft_board_pick.rb', line 135 attribute :jersey_number, Shale::Type::String |
#organization ⇒ String
Returns the organization name
95 |
# File 'lib/nba/draft_board_pick.rb', line 95 attribute :organization, Shale::Type::String |
#organization_type ⇒ String
Returns the organization type
103 |
# File 'lib/nba/draft_board_pick.rb', line 103 attribute :organization_type, Shale::Type::String |
#overall_pick ⇒ Integer
Returns the overall pick number
55 |
# File 'lib/nba/draft_board_pick.rb', line 55 attribute :overall_pick, Shale::Type::Integer |
#person_id ⇒ Integer
Returns the person ID
15 |
# File 'lib/nba/draft_board_pick.rb', line 15 attribute :person_id, Shale::Type::Integer |
#player_name ⇒ String
Returns the player name
23 |
# File 'lib/nba/draft_board_pick.rb', line 23 attribute :player_name, Shale::Type::String |
#position ⇒ String
Returns the player position
127 |
# File 'lib/nba/draft_board_pick.rb', line 127 attribute :position, Shale::Type::String |
#round_number ⇒ Integer
Returns the draft round number
39 |
# File 'lib/nba/draft_board_pick.rb', line 39 attribute :round_number, Shale::Type::Integer |
#round_pick ⇒ Integer
Returns the pick number in the round
47 |
# File 'lib/nba/draft_board_pick.rb', line 47 attribute :round_pick, Shale::Type::Integer |
#season ⇒ String
Returns the draft season
31 |
# File 'lib/nba/draft_board_pick.rb', line 31 attribute :season, Shale::Type::String |
#team_abbreviation ⇒ String
Returns the team abbreviation
87 |
# File 'lib/nba/draft_board_pick.rb', line 87 attribute :team_abbreviation, Shale::Type::String |
#team_city ⇒ String
Returns the team city
71 |
# File 'lib/nba/draft_board_pick.rb', line 71 attribute :team_city, Shale::Type::String |
#team_id ⇒ Integer
Returns the team ID
63 |
# File 'lib/nba/draft_board_pick.rb', line 63 attribute :team_id, Shale::Type::Integer |
#team_name ⇒ String
Returns the team name
79 |
# File 'lib/nba/draft_board_pick.rb', line 79 attribute :team_name, Shale::Type::String |
#weight ⇒ String
Returns the player weight
119 |
# File 'lib/nba/draft_board_pick.rb', line 119 attribute :weight, Shale::Type::String |