| 1 | package pl.zankowski.iextrading4j.api.stocks; | |
| 2 | ||
| 3 | import com.fasterxml.jackson.annotation.JsonCreator; | |
| 4 | import com.fasterxml.jackson.annotation.JsonProperty; | |
| 5 | import com.google.common.base.Objects; | |
| 6 | ||
| 7 | import java.io.Serializable; | |
| 8 | import java.math.BigDecimal; | |
| 9 | import java.time.LocalDate; | |
| 10 | import java.util.List; | |
| 11 | ||
| 12 | import static pl.zankowski.iextrading4j.api.util.ListUtil.immutableList; | |
| 13 | ||
| 14 | public class Ipo implements Serializable { | |
| 15 | ||
| 16 | private static final long serialVersionUID = 6433050561897952237L; | |
| 17 | ||
| 18 | private final String symbol; | |
| 19 | private final String companyName; | |
| 20 | private final LocalDate expectedDate; | |
| 21 | private final List<String> leadUnderwriters; | |
| 22 | private final List<String> underwriters; | |
| 23 | private final List<String> companyCounsel; | |
| 24 | private final List<String> underwriterCounsel; | |
| 25 | private final String auditor; | |
| 26 | private final String market; | |
| 27 | private final String cik; | |
| 28 | private final String address; | |
| 29 | private final String city; | |
| 30 | private final String state; | |
| 31 | private final String zip; | |
| 32 | private final String phone; | |
| 33 | private final String ceo; | |
| 34 | private final BigDecimal employees; | |
| 35 | private final String url; | |
| 36 | private final String status; | |
| 37 | private final BigDecimal sharesOffered; | |
| 38 | private final BigDecimal priceLow; | |
| 39 | private final BigDecimal priceHigh; | |
| 40 | private final BigDecimal offerAmount; | |
| 41 | private final BigDecimal totalExpenses; | |
| 42 | private final BigDecimal sharesOverAlloted; | |
| 43 | private final BigDecimal shareholderShares; | |
| 44 | private final BigDecimal sharesOutstanding; | |
| 45 | private final LocalDate lockupPeriodExpiration; | |
| 46 | private final LocalDate quietPeriodExpiration; | |
| 47 | private final BigDecimal revenue; | |
| 48 | private final BigDecimal netIncome; | |
| 49 | private final BigDecimal totalAssets; | |
| 50 | private final BigDecimal totalLiabilities; | |
| 51 | private final BigDecimal stockholderEquity; | |
| 52 | private final String companyDescription; | |
| 53 | private final String businessDescription; | |
| 54 | private final String useOfProceeds; | |
| 55 | private final String competition; | |
| 56 | private final BigDecimal amount; | |
| 57 | private final BigDecimal percentOffered; | |
| 58 | ||
| 59 | @JsonCreator | |
| 60 | public Ipo( | |
| 61 | @JsonProperty("symbol") final String symbol, | |
| 62 | @JsonProperty("companyName") final String companyName, | |
| 63 | @JsonProperty("expectedDate") final LocalDate expectedDate, | |
| 64 | @JsonProperty("leadUnderwriters") final List<String> leadUnderwriters, | |
| 65 | @JsonProperty("underwriters") final List<String> underwriters, | |
| 66 | @JsonProperty("companyCounsel") final List<String> companyCounsel, | |
| 67 | @JsonProperty("underwriterCounsel") final List<String> underwriterCounsel, | |
| 68 | @JsonProperty("auditor") final String auditor, | |
| 69 | @JsonProperty("market") final String market, | |
| 70 | @JsonProperty("cik") final String cik, | |
| 71 | @JsonProperty("address") final String address, | |
| 72 | @JsonProperty("city") final String city, | |
| 73 | @JsonProperty("state") final String state, | |
| 74 | @JsonProperty("zip") final String zip, | |
| 75 | @JsonProperty("phone") final String phone, | |
| 76 | @JsonProperty("ceo") final String ceo, | |
| 77 | @JsonProperty("employees") final BigDecimal employees, | |
| 78 | @JsonProperty("url") final String url, | |
| 79 | @JsonProperty("status") final String status, | |
| 80 | @JsonProperty("sharesOffered") final BigDecimal sharesOffered, | |
| 81 | @JsonProperty("priceLow") final BigDecimal priceLow, | |
| 82 | @JsonProperty("priceHigh") final BigDecimal priceHigh, | |
| 83 | @JsonProperty("offerAmount") final BigDecimal offerAmount, | |
| 84 | @JsonProperty("totalExpenses") final BigDecimal totalExpenses, | |
| 85 | @JsonProperty("sharesOverAlloted") final BigDecimal sharesOverAlloted, | |
| 86 | @JsonProperty("shareholderShares") final BigDecimal shareholderShares, | |
| 87 | @JsonProperty("sharesOutstanding") final BigDecimal sharesOutstanding, | |
| 88 | @JsonProperty("lockupPeriodExpiration") final LocalDate lockupPeriodExpiration, | |
| 89 | @JsonProperty("quietPeriodExpiration") final LocalDate quietPeriodExpiration, | |
| 90 | @JsonProperty("revenue") final BigDecimal revenue, | |
| 91 | @JsonProperty("netIncome") final BigDecimal netIncome, | |
| 92 | @JsonProperty("totalAssets") final BigDecimal totalAssets, | |
| 93 | @JsonProperty("totalLiabilities") final BigDecimal totalLiabilities, | |
| 94 | @JsonProperty("stockholderEquity") final BigDecimal stockholderEquity, | |
| 95 | @JsonProperty("companyDescription") final String companyDescription, | |
| 96 | @JsonProperty("businessDescription") final String businessDescription, | |
| 97 | @JsonProperty("useOfProceeds") final String useOfProceeds, | |
| 98 | @JsonProperty("competition") final String competition, | |
| 99 | @JsonProperty("amount") final BigDecimal amount, | |
| 100 | @JsonProperty("percentOffered") final BigDecimal percentOffered) { | |
| 101 | this.symbol = symbol; | |
| 102 | this.companyName = companyName; | |
| 103 | this.expectedDate = expectedDate; | |
| 104 | this.leadUnderwriters = immutableList(leadUnderwriters); | |
| 105 | this.underwriters = immutableList(underwriters); | |
| 106 | this.companyCounsel = immutableList(companyCounsel); | |
| 107 | this.underwriterCounsel = immutableList(underwriterCounsel); | |
| 108 | this.auditor = auditor; | |
| 109 | this.market = market; | |
| 110 | this.cik = cik; | |
| 111 | this.address = address; | |
| 112 | this.city = city; | |
| 113 | this.state = state; | |
| 114 | this.zip = zip; | |
| 115 | this.phone = phone; | |
| 116 | this.ceo = ceo; | |
| 117 | this.employees = employees; | |
| 118 | this.url = url; | |
| 119 | this.status = status; | |
| 120 | this.sharesOffered = sharesOffered; | |
| 121 | this.priceLow = priceLow; | |
| 122 | this.priceHigh = priceHigh; | |
| 123 | this.offerAmount = offerAmount; | |
| 124 | this.totalExpenses = totalExpenses; | |
| 125 | this.sharesOverAlloted = sharesOverAlloted; | |
| 126 | this.shareholderShares = shareholderShares; | |
| 127 | this.sharesOutstanding = sharesOutstanding; | |
| 128 | this.lockupPeriodExpiration = lockupPeriodExpiration; | |
| 129 | this.quietPeriodExpiration = quietPeriodExpiration; | |
| 130 | this.revenue = revenue; | |
| 131 | this.netIncome = netIncome; | |
| 132 | this.totalAssets = totalAssets; | |
| 133 | this.totalLiabilities = totalLiabilities; | |
| 134 | this.stockholderEquity = stockholderEquity; | |
| 135 | this.companyDescription = companyDescription; | |
| 136 | this.businessDescription = businessDescription; | |
| 137 | this.useOfProceeds = useOfProceeds; | |
| 138 | this.competition = competition; | |
| 139 | this.amount = amount; | |
| 140 | this.percentOffered = percentOffered; | |
| 141 | } | |
| 142 | ||
| 143 | public String getSymbol() { | |
| 144 |
1
1. getSymbol : replaced return value with "" for pl/zankowski/iextrading4j/api/stocks/Ipo::getSymbol → KILLED |
return symbol; |
| 145 | } | |
| 146 | ||
| 147 | public String getCompanyName() { | |
| 148 |
1
1. getCompanyName : replaced return value with "" for pl/zankowski/iextrading4j/api/stocks/Ipo::getCompanyName → KILLED |
return companyName; |
| 149 | } | |
| 150 | ||
| 151 | public LocalDate getExpectedDate() { | |
| 152 |
1
1. getExpectedDate : replaced return value with null for pl/zankowski/iextrading4j/api/stocks/Ipo::getExpectedDate → KILLED |
return expectedDate; |
| 153 | } | |
| 154 | ||
| 155 | public List<String> getLeadUnderwriters() { | |
| 156 |
1
1. getLeadUnderwriters : replaced return value with Collections.emptyList for pl/zankowski/iextrading4j/api/stocks/Ipo::getLeadUnderwriters → KILLED |
return leadUnderwriters; |
| 157 | } | |
| 158 | ||
| 159 | public List<String> getUnderwriters() { | |
| 160 |
1
1. getUnderwriters : replaced return value with Collections.emptyList for pl/zankowski/iextrading4j/api/stocks/Ipo::getUnderwriters → KILLED |
return underwriters; |
| 161 | } | |
| 162 | ||
| 163 | public List<String> getCompanyCounsel() { | |
| 164 |
1
1. getCompanyCounsel : replaced return value with Collections.emptyList for pl/zankowski/iextrading4j/api/stocks/Ipo::getCompanyCounsel → KILLED |
return companyCounsel; |
| 165 | } | |
| 166 | ||
| 167 | public List<String> getUnderwriterCounsel() { | |
| 168 |
1
1. getUnderwriterCounsel : replaced return value with Collections.emptyList for pl/zankowski/iextrading4j/api/stocks/Ipo::getUnderwriterCounsel → KILLED |
return underwriterCounsel; |
| 169 | } | |
| 170 | ||
| 171 | public String getAuditor() { | |
| 172 |
1
1. getAuditor : replaced return value with "" for pl/zankowski/iextrading4j/api/stocks/Ipo::getAuditor → KILLED |
return auditor; |
| 173 | } | |
| 174 | ||
| 175 | public String getMarket() { | |
| 176 |
1
1. getMarket : replaced return value with "" for pl/zankowski/iextrading4j/api/stocks/Ipo::getMarket → KILLED |
return market; |
| 177 | } | |
| 178 | ||
| 179 | public String getCik() { | |
| 180 |
1
1. getCik : replaced return value with "" for pl/zankowski/iextrading4j/api/stocks/Ipo::getCik → KILLED |
return cik; |
| 181 | } | |
| 182 | ||
| 183 | public String getAddress() { | |
| 184 |
1
1. getAddress : replaced return value with "" for pl/zankowski/iextrading4j/api/stocks/Ipo::getAddress → KILLED |
return address; |
| 185 | } | |
| 186 | ||
| 187 | public String getCity() { | |
| 188 |
1
1. getCity : replaced return value with "" for pl/zankowski/iextrading4j/api/stocks/Ipo::getCity → KILLED |
return city; |
| 189 | } | |
| 190 | ||
| 191 | public String getState() { | |
| 192 |
1
1. getState : replaced return value with "" for pl/zankowski/iextrading4j/api/stocks/Ipo::getState → KILLED |
return state; |
| 193 | } | |
| 194 | ||
| 195 | public String getZip() { | |
| 196 |
1
1. getZip : replaced return value with "" for pl/zankowski/iextrading4j/api/stocks/Ipo::getZip → KILLED |
return zip; |
| 197 | } | |
| 198 | ||
| 199 | public String getPhone() { | |
| 200 |
1
1. getPhone : replaced return value with "" for pl/zankowski/iextrading4j/api/stocks/Ipo::getPhone → KILLED |
return phone; |
| 201 | } | |
| 202 | ||
| 203 | public String getCeo() { | |
| 204 |
1
1. getCeo : replaced return value with "" for pl/zankowski/iextrading4j/api/stocks/Ipo::getCeo → KILLED |
return ceo; |
| 205 | } | |
| 206 | ||
| 207 | public BigDecimal getEmployees() { | |
| 208 |
1
1. getEmployees : replaced return value with null for pl/zankowski/iextrading4j/api/stocks/Ipo::getEmployees → KILLED |
return employees; |
| 209 | } | |
| 210 | ||
| 211 | public String getUrl() { | |
| 212 |
1
1. getUrl : replaced return value with "" for pl/zankowski/iextrading4j/api/stocks/Ipo::getUrl → KILLED |
return url; |
| 213 | } | |
| 214 | ||
| 215 | public String getStatus() { | |
| 216 |
1
1. getStatus : replaced return value with "" for pl/zankowski/iextrading4j/api/stocks/Ipo::getStatus → KILLED |
return status; |
| 217 | } | |
| 218 | ||
| 219 | public BigDecimal getSharesOffered() { | |
| 220 |
1
1. getSharesOffered : replaced return value with null for pl/zankowski/iextrading4j/api/stocks/Ipo::getSharesOffered → KILLED |
return sharesOffered; |
| 221 | } | |
| 222 | ||
| 223 | public BigDecimal getPriceLow() { | |
| 224 |
1
1. getPriceLow : replaced return value with null for pl/zankowski/iextrading4j/api/stocks/Ipo::getPriceLow → KILLED |
return priceLow; |
| 225 | } | |
| 226 | ||
| 227 | public BigDecimal getPriceHigh() { | |
| 228 |
1
1. getPriceHigh : replaced return value with null for pl/zankowski/iextrading4j/api/stocks/Ipo::getPriceHigh → KILLED |
return priceHigh; |
| 229 | } | |
| 230 | ||
| 231 | public BigDecimal getOfferAmount() { | |
| 232 |
1
1. getOfferAmount : replaced return value with null for pl/zankowski/iextrading4j/api/stocks/Ipo::getOfferAmount → KILLED |
return offerAmount; |
| 233 | } | |
| 234 | ||
| 235 | public BigDecimal getTotalExpenses() { | |
| 236 |
1
1. getTotalExpenses : replaced return value with null for pl/zankowski/iextrading4j/api/stocks/Ipo::getTotalExpenses → KILLED |
return totalExpenses; |
| 237 | } | |
| 238 | ||
| 239 | public BigDecimal getSharesOverAlloted() { | |
| 240 |
1
1. getSharesOverAlloted : replaced return value with null for pl/zankowski/iextrading4j/api/stocks/Ipo::getSharesOverAlloted → KILLED |
return sharesOverAlloted; |
| 241 | } | |
| 242 | ||
| 243 | public BigDecimal getShareholderShares() { | |
| 244 |
1
1. getShareholderShares : replaced return value with null for pl/zankowski/iextrading4j/api/stocks/Ipo::getShareholderShares → KILLED |
return shareholderShares; |
| 245 | } | |
| 246 | ||
| 247 | public BigDecimal getSharesOutstanding() { | |
| 248 |
1
1. getSharesOutstanding : replaced return value with null for pl/zankowski/iextrading4j/api/stocks/Ipo::getSharesOutstanding → KILLED |
return sharesOutstanding; |
| 249 | } | |
| 250 | ||
| 251 | public LocalDate getLockupPeriodExpiration() { | |
| 252 |
1
1. getLockupPeriodExpiration : replaced return value with null for pl/zankowski/iextrading4j/api/stocks/Ipo::getLockupPeriodExpiration → KILLED |
return lockupPeriodExpiration; |
| 253 | } | |
| 254 | ||
| 255 | public LocalDate getQuietPeriodExpiration() { | |
| 256 |
1
1. getQuietPeriodExpiration : replaced return value with null for pl/zankowski/iextrading4j/api/stocks/Ipo::getQuietPeriodExpiration → KILLED |
return quietPeriodExpiration; |
| 257 | } | |
| 258 | ||
| 259 | public BigDecimal getRevenue() { | |
| 260 |
1
1. getRevenue : replaced return value with null for pl/zankowski/iextrading4j/api/stocks/Ipo::getRevenue → KILLED |
return revenue; |
| 261 | } | |
| 262 | ||
| 263 | public BigDecimal getNetIncome() { | |
| 264 |
1
1. getNetIncome : replaced return value with null for pl/zankowski/iextrading4j/api/stocks/Ipo::getNetIncome → KILLED |
return netIncome; |
| 265 | } | |
| 266 | ||
| 267 | public BigDecimal getTotalAssets() { | |
| 268 |
1
1. getTotalAssets : replaced return value with null for pl/zankowski/iextrading4j/api/stocks/Ipo::getTotalAssets → KILLED |
return totalAssets; |
| 269 | } | |
| 270 | ||
| 271 | public BigDecimal getTotalLiabilities() { | |
| 272 |
1
1. getTotalLiabilities : replaced return value with null for pl/zankowski/iextrading4j/api/stocks/Ipo::getTotalLiabilities → KILLED |
return totalLiabilities; |
| 273 | } | |
| 274 | ||
| 275 | public BigDecimal getStockholderEquity() { | |
| 276 |
1
1. getStockholderEquity : replaced return value with null for pl/zankowski/iextrading4j/api/stocks/Ipo::getStockholderEquity → KILLED |
return stockholderEquity; |
| 277 | } | |
| 278 | ||
| 279 | public String getCompanyDescription() { | |
| 280 |
1
1. getCompanyDescription : replaced return value with "" for pl/zankowski/iextrading4j/api/stocks/Ipo::getCompanyDescription → KILLED |
return companyDescription; |
| 281 | } | |
| 282 | ||
| 283 | public String getBusinessDescription() { | |
| 284 |
1
1. getBusinessDescription : replaced return value with "" for pl/zankowski/iextrading4j/api/stocks/Ipo::getBusinessDescription → KILLED |
return businessDescription; |
| 285 | } | |
| 286 | ||
| 287 | public String getUseOfProceeds() { | |
| 288 |
1
1. getUseOfProceeds : replaced return value with "" for pl/zankowski/iextrading4j/api/stocks/Ipo::getUseOfProceeds → KILLED |
return useOfProceeds; |
| 289 | } | |
| 290 | ||
| 291 | public String getCompetition() { | |
| 292 |
1
1. getCompetition : replaced return value with "" for pl/zankowski/iextrading4j/api/stocks/Ipo::getCompetition → KILLED |
return competition; |
| 293 | } | |
| 294 | ||
| 295 | public BigDecimal getAmount() { | |
| 296 |
1
1. getAmount : replaced return value with null for pl/zankowski/iextrading4j/api/stocks/Ipo::getAmount → KILLED |
return amount; |
| 297 | } | |
| 298 | ||
| 299 | public BigDecimal getPercentOffered() { | |
| 300 |
1
1. getPercentOffered : replaced return value with null for pl/zankowski/iextrading4j/api/stocks/Ipo::getPercentOffered → KILLED |
return percentOffered; |
| 301 | } | |
| 302 | ||
| 303 | @Override | |
| 304 | public boolean equals(final Object o) { | |
| 305 |
2
1. equals : negated conditional → KILLED 2. equals : replaced boolean return with false for pl/zankowski/iextrading4j/api/stocks/Ipo::equals → KILLED |
if (this == o) return true; |
| 306 |
3
1. equals : negated conditional → KILLED 2. equals : negated conditional → KILLED 3. equals : replaced boolean return with true for pl/zankowski/iextrading4j/api/stocks/Ipo::equals → KILLED |
if (o == null || getClass() != o.getClass()) return false; |
| 307 | final Ipo ipo = (Ipo) o; | |
| 308 |
2
1. equals : negated conditional → KILLED 2. equals : replaced boolean return with true for pl/zankowski/iextrading4j/api/stocks/Ipo::equals → KILLED |
return Objects.equal(symbol, ipo.symbol) && |
| 309 |
1
1. equals : negated conditional → KILLED |
Objects.equal(companyName, ipo.companyName) && |
| 310 |
1
1. equals : negated conditional → KILLED |
Objects.equal(expectedDate, ipo.expectedDate) && |
| 311 |
1
1. equals : negated conditional → KILLED |
Objects.equal(leadUnderwriters, ipo.leadUnderwriters) && |
| 312 |
1
1. equals : negated conditional → KILLED |
Objects.equal(underwriters, ipo.underwriters) && |
| 313 |
1
1. equals : negated conditional → KILLED |
Objects.equal(companyCounsel, ipo.companyCounsel) && |
| 314 |
1
1. equals : negated conditional → KILLED |
Objects.equal(underwriterCounsel, ipo.underwriterCounsel) && |
| 315 |
1
1. equals : negated conditional → KILLED |
Objects.equal(auditor, ipo.auditor) && |
| 316 |
1
1. equals : negated conditional → KILLED |
Objects.equal(market, ipo.market) && |
| 317 |
1
1. equals : negated conditional → KILLED |
Objects.equal(cik, ipo.cik) && |
| 318 |
1
1. equals : negated conditional → KILLED |
Objects.equal(address, ipo.address) && |
| 319 |
1
1. equals : negated conditional → KILLED |
Objects.equal(city, ipo.city) && |
| 320 |
1
1. equals : negated conditional → KILLED |
Objects.equal(state, ipo.state) && |
| 321 |
1
1. equals : negated conditional → KILLED |
Objects.equal(zip, ipo.zip) && |
| 322 |
1
1. equals : negated conditional → KILLED |
Objects.equal(phone, ipo.phone) && |
| 323 |
1
1. equals : negated conditional → KILLED |
Objects.equal(ceo, ipo.ceo) && |
| 324 |
1
1. equals : negated conditional → KILLED |
Objects.equal(employees, ipo.employees) && |
| 325 |
1
1. equals : negated conditional → KILLED |
Objects.equal(url, ipo.url) && |
| 326 |
1
1. equals : negated conditional → KILLED |
Objects.equal(status, ipo.status) && |
| 327 |
1
1. equals : negated conditional → KILLED |
Objects.equal(sharesOffered, ipo.sharesOffered) && |
| 328 |
1
1. equals : negated conditional → KILLED |
Objects.equal(priceLow, ipo.priceLow) && |
| 329 |
1
1. equals : negated conditional → KILLED |
Objects.equal(priceHigh, ipo.priceHigh) && |
| 330 |
1
1. equals : negated conditional → KILLED |
Objects.equal(offerAmount, ipo.offerAmount) && |
| 331 |
1
1. equals : negated conditional → KILLED |
Objects.equal(totalExpenses, ipo.totalExpenses) && |
| 332 |
1
1. equals : negated conditional → KILLED |
Objects.equal(sharesOverAlloted, ipo.sharesOverAlloted) && |
| 333 |
1
1. equals : negated conditional → KILLED |
Objects.equal(shareholderShares, ipo.shareholderShares) && |
| 334 |
1
1. equals : negated conditional → KILLED |
Objects.equal(sharesOutstanding, ipo.sharesOutstanding) && |
| 335 |
1
1. equals : negated conditional → KILLED |
Objects.equal(lockupPeriodExpiration, ipo.lockupPeriodExpiration) && |
| 336 |
1
1. equals : negated conditional → KILLED |
Objects.equal(quietPeriodExpiration, ipo.quietPeriodExpiration) && |
| 337 |
1
1. equals : negated conditional → KILLED |
Objects.equal(revenue, ipo.revenue) && |
| 338 |
1
1. equals : negated conditional → KILLED |
Objects.equal(netIncome, ipo.netIncome) && |
| 339 |
1
1. equals : negated conditional → KILLED |
Objects.equal(totalAssets, ipo.totalAssets) && |
| 340 |
1
1. equals : negated conditional → KILLED |
Objects.equal(totalLiabilities, ipo.totalLiabilities) && |
| 341 |
1
1. equals : negated conditional → KILLED |
Objects.equal(stockholderEquity, ipo.stockholderEquity) && |
| 342 |
1
1. equals : negated conditional → KILLED |
Objects.equal(companyDescription, ipo.companyDescription) && |
| 343 |
1
1. equals : negated conditional → KILLED |
Objects.equal(businessDescription, ipo.businessDescription) && |
| 344 |
1
1. equals : negated conditional → KILLED |
Objects.equal(useOfProceeds, ipo.useOfProceeds) && |
| 345 |
1
1. equals : negated conditional → KILLED |
Objects.equal(competition, ipo.competition) && |
| 346 |
1
1. equals : negated conditional → KILLED |
Objects.equal(amount, ipo.amount) && |
| 347 |
1
1. equals : negated conditional → KILLED |
Objects.equal(percentOffered, ipo.percentOffered); |
| 348 | } | |
| 349 | ||
| 350 | @Override | |
| 351 | public int hashCode() { | |
| 352 |
1
1. hashCode : replaced int return with 0 for pl/zankowski/iextrading4j/api/stocks/Ipo::hashCode → KILLED |
return Objects.hashCode(symbol, companyName, expectedDate, leadUnderwriters, underwriters, |
| 353 | companyCounsel, underwriterCounsel, auditor, market, cik, address, city, state, zip, | |
| 354 | phone, ceo, employees, url, status, sharesOffered, priceLow, priceHigh, offerAmount, | |
| 355 | totalExpenses, sharesOverAlloted, shareholderShares, sharesOutstanding, lockupPeriodExpiration, | |
| 356 | quietPeriodExpiration, revenue, netIncome, totalAssets, totalLiabilities, stockholderEquity, | |
| 357 | companyDescription, businessDescription, useOfProceeds, competition, amount, percentOffered); | |
| 358 | } | |
| 359 | ||
| 360 | @Override | |
| 361 | public String toString() { | |
| 362 |
1
1. toString : replaced return value with "" for pl/zankowski/iextrading4j/api/stocks/Ipo::toString → KILLED |
return "Ipo{" + |
| 363 | "symbol='" + symbol + '\'' + | |
| 364 | ", companyName='" + companyName + '\'' + | |
| 365 | ", expectedDate=" + expectedDate + | |
| 366 | ", leadUnderwriters=" + leadUnderwriters + | |
| 367 | ", underwriters=" + underwriters + | |
| 368 | ", companyCounsel=" + companyCounsel + | |
| 369 | ", underwriterCounsel=" + underwriterCounsel + | |
| 370 | ", auditor='" + auditor + '\'' + | |
| 371 | ", market='" + market + '\'' + | |
| 372 | ", cik='" + cik + '\'' + | |
| 373 | ", address='" + address + '\'' + | |
| 374 | ", city='" + city + '\'' + | |
| 375 | ", state='" + state + '\'' + | |
| 376 | ", zip='" + zip + '\'' + | |
| 377 | ", phone='" + phone + '\'' + | |
| 378 | ", ceo='" + ceo + '\'' + | |
| 379 | ", employees=" + employees + | |
| 380 | ", url='" + url + '\'' + | |
| 381 | ", status='" + status + '\'' + | |
| 382 | ", sharesOffered=" + sharesOffered + | |
| 383 | ", priceLow=" + priceLow + | |
| 384 | ", priceHigh=" + priceHigh + | |
| 385 | ", offerAmount=" + offerAmount + | |
| 386 | ", totalExpenses=" + totalExpenses + | |
| 387 | ", sharesOverAlloted=" + sharesOverAlloted + | |
| 388 | ", shareholderShares=" + shareholderShares + | |
| 389 | ", sharesOutstanding=" + sharesOutstanding + | |
| 390 | ", lockupPeriodExpiration=" + lockupPeriodExpiration + | |
| 391 | ", quietPeriodExpiration=" + quietPeriodExpiration + | |
| 392 | ", revenue=" + revenue + | |
| 393 | ", netIncome=" + netIncome + | |
| 394 | ", totalAssets=" + totalAssets + | |
| 395 | ", totalLiabilities=" + totalLiabilities + | |
| 396 | ", stockholderEquity=" + stockholderEquity + | |
| 397 | ", companyDescription='" + companyDescription + '\'' + | |
| 398 | ", businessDescription='" + businessDescription + '\'' + | |
| 399 | ", useOfProceeds='" + useOfProceeds + '\'' + | |
| 400 | ", competition='" + competition + '\'' + | |
| 401 | ", amount=" + amount + | |
| 402 | ", percentOffered=" + percentOffered + | |
| 403 | '}'; | |
| 404 | } | |
| 405 | ||
| 406 | } | |
Mutations | ||
| 144 |
1.1 |
|
| 148 |
1.1 |
|
| 152 |
1.1 |
|
| 156 |
1.1 |
|
| 160 |
1.1 |
|
| 164 |
1.1 |
|
| 168 |
1.1 |
|
| 172 |
1.1 |
|
| 176 |
1.1 |
|
| 180 |
1.1 |
|
| 184 |
1.1 |
|
| 188 |
1.1 |
|
| 192 |
1.1 |
|
| 196 |
1.1 |
|
| 200 |
1.1 |
|
| 204 |
1.1 |
|
| 208 |
1.1 |
|
| 212 |
1.1 |
|
| 216 |
1.1 |
|
| 220 |
1.1 |
|
| 224 |
1.1 |
|
| 228 |
1.1 |
|
| 232 |
1.1 |
|
| 236 |
1.1 |
|
| 240 |
1.1 |
|
| 244 |
1.1 |
|
| 248 |
1.1 |
|
| 252 |
1.1 |
|
| 256 |
1.1 |
|
| 260 |
1.1 |
|
| 264 |
1.1 |
|
| 268 |
1.1 |
|
| 272 |
1.1 |
|
| 276 |
1.1 |
|
| 280 |
1.1 |
|
| 284 |
1.1 |
|
| 288 |
1.1 |
|
| 292 |
1.1 |
|
| 296 |
1.1 |
|
| 300 |
1.1 |
|
| 305 |
1.1 2.2 |
|
| 306 |
1.1 2.2 3.3 |
|
| 308 |
1.1 2.2 |
|
| 309 |
1.1 |
|
| 310 |
1.1 |
|
| 311 |
1.1 |
|
| 312 |
1.1 |
|
| 313 |
1.1 |
|
| 314 |
1.1 |
|
| 315 |
1.1 |
|
| 316 |
1.1 |
|
| 317 |
1.1 |
|
| 318 |
1.1 |
|
| 319 |
1.1 |
|
| 320 |
1.1 |
|
| 321 |
1.1 |
|
| 322 |
1.1 |
|
| 323 |
1.1 |
|
| 324 |
1.1 |
|
| 325 |
1.1 |
|
| 326 |
1.1 |
|
| 327 |
1.1 |
|
| 328 |
1.1 |
|
| 329 |
1.1 |
|
| 330 |
1.1 |
|
| 331 |
1.1 |
|
| 332 |
1.1 |
|
| 333 |
1.1 |
|
| 334 |
1.1 |
|
| 335 |
1.1 |
|
| 336 |
1.1 |
|
| 337 |
1.1 |
|
| 338 |
1.1 |
|
| 339 |
1.1 |
|
| 340 |
1.1 |
|
| 341 |
1.1 |
|
| 342 |
1.1 |
|
| 343 |
1.1 |
|
| 344 |
1.1 |
|
| 345 |
1.1 |
|
| 346 |
1.1 |
|
| 347 |
1.1 |
|
| 352 |
1.1 |
|
| 362 |
1.1 |