apex-consts icon indicating copy to clipboard operation
apex-consts copied to clipboard

Framework to store Constants in Apex.

Results 1 apex-consts issues
Sort by recently updated
recently updated
newest added

calling System.debug(Consts.ACCOUNT.TYPE.PROSPECT); // 'Prospect' Error: Variable does not exist: Consts.ACCOUNT.TYPE CLASS: ```java public with sharing class Consts { public static final AccountConsts ACCOUNT { get { return AccountConsts.INSTANCE; } }...