◆ ProfileBusiness()
org.turro.contacts.profile.ProfileBusiness.ProfileBusiness |
( |
Contact |
contact | ) |
|
◆ getCoworkers() [1/2]
List<BusinessRelation> org.turro.contacts.profile.ProfileBusiness.getCoworkers |
( |
| ) |
|
◆ getCoworkers() [2/2]
List<BusinessRelation> org.turro.contacts.profile.ProfileBusiness.getCoworkers |
( |
Date |
date | ) |
|
Definition at line 95 of file ProfileBusiness.java.
96 List<BusinessRelation> brs =
new ArrayList<>();
97 for(BusinessRelation br :
this) {
98 Workers workers =
new Workers(br.getBusiness());
◆ getList() [1/2]
◆ getList() [2/2]
List<BusinessRelation> org.turro.contacts.profile.ProfileBusiness.getList |
( |
Date |
date | ) |
|
Definition at line 67 of file ProfileBusiness.java.
68 List<BusinessRelation> brs =
new ArrayList<>();
69 for(BusinessRelation br :
this) {
70 if(Dates.inRange(br.getStartDate(), br.getEndDate(), date)) {
◆ getOutdated() [1/2]
List<BusinessRelation> org.turro.contacts.profile.ProfileBusiness.getOutdated |
( |
| ) |
|
◆ getOutdated() [2/2]
List<BusinessRelation> org.turro.contacts.profile.ProfileBusiness.getOutdated |
( |
Date |
date | ) |
|
Definition at line 81 of file ProfileBusiness.java.
82 List<BusinessRelation> brs =
new ArrayList<>();
83 for(BusinessRelation br :
this) {
84 if(!Dates.inRange(br.getStartDate(), br.getEndDate(), date)) {
◆ getPrincipal() [1/2]
◆ getPrincipal() [2/2]
BusinessRelation org.turro.contacts.profile.ProfileBusiness.getPrincipal |
( |
Date |
date | ) |
|
Definition at line 49 of file ProfileBusiness.java.
50 for(BusinessRelation br :
this) {
51 if(br.isPreferential() && Dates.inRange(br.getStartDate(), br.getEndDate(), date)) {
55 for(BusinessRelation br :
this) {
56 if(Dates.inRange(br.getStartDate(), br.getEndDate(), date)) {
The documentation for this class was generated from the following file: