Deploy
sfdx force:source:deploy -x path/to/package.xml
Check deployment.
sfdx force:source:deploy -x path/to/package.xml -c
Deploy
sfdx force:source:deploy -x path/to/package.xml
Check deployment.
sfdx force:source:deploy -x path/to/package.xml -c
| Schema.DescribeFieldResult fieldResult = Contact.title.getDescribe(); | |
| List<Schema.PicklistEntry> ple = fieldResult.getPicklistValues(); | |
| public Boolean contains(String title) | |
| { | |
| for (Schema.PicklistEntry t : ple) | |
| { | |
| if (t.getValue().equals(title)) | |
| { | |
| return true; |