Skip to content

Annotations

Naming standards for annotations.

Rules for Naming

Capitalization

PascalCase

Wrong Examples

Annotation Reason
@isTest Annotation starts with lowercase letter.
@invocableMethod(label='Foo Bar') Annotation starts with lowercase letter.

Good Examples

Annotation
@IsTest
@InvocableMethod(label='Baz Gazonk')