Class: NBA::DraftCombineStat
- Inherits:
-
Shale::Mapper
- Object
- Shale::Mapper
- NBA::DraftCombineStat
- Defined in:
- lib/nba/draft_combine_stat.rb
Overview
Represents a draft combine stat
Instance Attribute Summary collapse
-
#bench_press ⇒ Integer
Returns bench press repetitions.
-
#body_fat_pct ⇒ Float
Returns body fat percentage.
-
#first_name ⇒ String
Returns the player’s first name.
-
#hand_length ⇒ Float
Returns hand length in inches.
-
#hand_width ⇒ Float
Returns hand width in inches.
-
#height_w_shoes ⇒ Float
Returns height with shoes in inches.
-
#height_w_shoes_ft_in ⇒ String
Returns height with shoes in feet and inches.
-
#height_wo_shoes ⇒ Float
Returns height without shoes in inches.
-
#height_wo_shoes_ft_in ⇒ String
Returns height without shoes in feet and inches.
-
#lane_agility_time ⇒ Float
Returns lane agility time in seconds.
-
#last_name ⇒ String
Returns the player’s last name.
-
#max_vertical_leap ⇒ Float
Returns maximum vertical leap in inches.
-
#modified_lane_agility_time ⇒ Float
Returns modified lane agility time in seconds.
-
#player_id ⇒ Integer
Returns the player ID.
-
#player_name ⇒ String
Returns the player name.
-
#position ⇒ String
Returns the player’s position.
-
#season ⇒ String
Returns the season.
-
#standing_reach ⇒ Float
Returns standing reach in inches.
-
#standing_reach_ft_in ⇒ String
Returns standing reach in feet and inches.
-
#standing_vertical_leap ⇒ Float
Returns standing vertical leap in inches.
-
#three_quarter_sprint ⇒ Float
Returns three quarter sprint time in seconds.
-
#weight ⇒ Float
Returns weight in pounds.
-
#wingspan ⇒ Float
Returns wingspan in inches.
-
#wingspan_ft_in ⇒ String
Returns wingspan in feet and inches.
Instance Method Summary collapse
-
#player ⇒ Player?
Returns the player object.
Instance Attribute Details
#bench_press ⇒ Integer
Returns bench press repetitions
199 |
# File 'lib/nba/draft_combine_stat.rb', line 199 attribute :bench_press, Shale::Type::Integer |
#body_fat_pct ⇒ Float
Returns body fat percentage
135 |
# File 'lib/nba/draft_combine_stat.rb', line 135 attribute :body_fat_pct, Shale::Type::Float |
#first_name ⇒ String
Returns the player’s first name
31 |
# File 'lib/nba/draft_combine_stat.rb', line 31 attribute :first_name, Shale::Type::String |
#hand_length ⇒ Float
Returns hand length in inches
143 |
# File 'lib/nba/draft_combine_stat.rb', line 143 attribute :hand_length, Shale::Type::Float |
#hand_width ⇒ Float
Returns hand width in inches
151 |
# File 'lib/nba/draft_combine_stat.rb', line 151 attribute :hand_width, Shale::Type::Float |
#height_w_shoes ⇒ Float
Returns height with shoes in inches
79 |
# File 'lib/nba/draft_combine_stat.rb', line 79 attribute :height_w_shoes, Shale::Type::Float |
#height_w_shoes_ft_in ⇒ String
Returns height with shoes in feet and inches
87 |
# File 'lib/nba/draft_combine_stat.rb', line 87 attribute :height_w_shoes_ft_in, Shale::Type::String |
#height_wo_shoes ⇒ Float
Returns height without shoes in inches
63 |
# File 'lib/nba/draft_combine_stat.rb', line 63 attribute :height_wo_shoes, Shale::Type::Float |
#height_wo_shoes_ft_in ⇒ String
Returns height without shoes in feet and inches
71 |
# File 'lib/nba/draft_combine_stat.rb', line 71 attribute :height_wo_shoes_ft_in, Shale::Type::String |
#lane_agility_time ⇒ Float
Returns lane agility time in seconds
175 |
# File 'lib/nba/draft_combine_stat.rb', line 175 attribute :lane_agility_time, Shale::Type::Float |
#last_name ⇒ String
Returns the player’s last name
39 |
# File 'lib/nba/draft_combine_stat.rb', line 39 attribute :last_name, Shale::Type::String |
#max_vertical_leap ⇒ Float
Returns maximum vertical leap in inches
167 |
# File 'lib/nba/draft_combine_stat.rb', line 167 attribute :max_vertical_leap, Shale::Type::Float |
#modified_lane_agility_time ⇒ Float
Returns modified lane agility time in seconds
183 |
# File 'lib/nba/draft_combine_stat.rb', line 183 attribute :modified_lane_agility_time, Shale::Type::Float |
#player_id ⇒ Integer
Returns the player ID
23 |
# File 'lib/nba/draft_combine_stat.rb', line 23 attribute :player_id, Shale::Type::Integer |
#player_name ⇒ String
Returns the player name
47 |
# File 'lib/nba/draft_combine_stat.rb', line 47 attribute :player_name, Shale::Type::String |
#position ⇒ String
Returns the player’s position
55 |
# File 'lib/nba/draft_combine_stat.rb', line 55 attribute :position, Shale::Type::String |
#season ⇒ String
Returns the season
15 |
# File 'lib/nba/draft_combine_stat.rb', line 15 attribute :season, Shale::Type::String |
#standing_reach ⇒ Float
Returns standing reach in inches
119 |
# File 'lib/nba/draft_combine_stat.rb', line 119 attribute :standing_reach, Shale::Type::Float |
#standing_reach_ft_in ⇒ String
Returns standing reach in feet and inches
127 |
# File 'lib/nba/draft_combine_stat.rb', line 127 attribute :standing_reach_ft_in, Shale::Type::String |
#standing_vertical_leap ⇒ Float
Returns standing vertical leap in inches
159 |
# File 'lib/nba/draft_combine_stat.rb', line 159 attribute :standing_vertical_leap, Shale::Type::Float |
#three_quarter_sprint ⇒ Float
Returns three quarter sprint time in seconds
191 |
# File 'lib/nba/draft_combine_stat.rb', line 191 attribute :three_quarter_sprint, Shale::Type::Float |
#weight ⇒ Float
Returns weight in pounds
95 |
# File 'lib/nba/draft_combine_stat.rb', line 95 attribute :weight, Shale::Type::Float |
#wingspan ⇒ Float
Returns wingspan in inches
103 |
# File 'lib/nba/draft_combine_stat.rb', line 103 attribute :wingspan, Shale::Type::Float |
#wingspan_ft_in ⇒ String
Returns wingspan in feet and inches
111 |
# File 'lib/nba/draft_combine_stat.rb', line 111 attribute :wingspan_ft_in, Shale::Type::String |