Package com.longbridge.fundamental
Class Shareholder
- java.lang.Object
-
- com.longbridge.fundamental.Shareholder
-
public class Shareholder extends Object
One major shareholder of a security.
-
-
Field Summary
Fields Modifier and Type Field Description StringinstitutionTypeInstitution type (may be empty).BigDecimalpercentOfSharesPercentage of shares held.StringreportDateDate of the most recent filing, e.g.StringshareholderIdInternal shareholder ID (string form).StringshareholderNameShareholder name.BigDecimalsharesChangedChange in shares held (positive = bought, negative = sold).ShareholderStock[]stocksOther securities held by this shareholder (cross-holdings).
-
Constructor Summary
Constructors Constructor Description Shareholder()
-
-
-
Field Detail
-
shareholderId
public String shareholderId
Internal shareholder ID (string form).
-
shareholderName
public String shareholderName
Shareholder name.
-
institutionType
public String institutionType
Institution type (may be empty).
-
percentOfShares
public BigDecimal percentOfShares
Percentage of shares held.
-
sharesChanged
public BigDecimal sharesChanged
Change in shares held (positive = bought, negative = sold).
-
reportDate
public String reportDate
Date of the most recent filing, e.g."2026-05-04".
-
stocks
public ShareholderStock[] stocks
Other securities held by this shareholder (cross-holdings).
-
-