- New York, NY
- www.korbencarreno.com
Pinned Loading
-
Apex Coding Standards
Apex Coding Standards 1Apex Coding Standard
23Introduction
4-------------
5Apex is a strongly-typed, object-oriented, proprietary programming language for the Force.com platform.
-
Counts the lines of apex code in org...
Counts the lines of apex code in org, combined both class and triggers. 1Integer classLines = 0;
2Integer triggerLines = 0;
34for(ApexClass a : [Select Body From ApexClass]){
5List<String> lines = a.Body.split('\n');
-
One Trigger Per Object Pattern using...
One Trigger Per Object Pattern using context specific handler methods and logic-less triggers. Bonus features such as Routing Abstractions, Recursion Detection and Prevention, and Centralize Enable/Disable of Triggers! 1trigger OpportunityTrigger on Opportunity (
2before insert, after insert,
3before update, after update,
4before delete, after delete) {
5//trigger body
-
apex-forloopspeeds
apex-forloopspeeds PublicForked from benedwards44/apex-forloopspeeds
Demonstrates the most time efficient for loops in Apex
Apex 2
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.