ApexPages Class
Use ApexPages to add and check for messages associated with the current page, as well as to reference the current page.
Approval Class
Contains methods for processing approval requests and setting approval-process locks and unlocks on records.
Blob Class
Contains methods for the Blob primitive data type.
Boolean Class
Contains methods for the Boolean primitive data type.
BusinessHours Class
Use the BusinessHours methods to set the business hours at which your customer support team operates.
Cases Class
Use the Cases class to interact with case records.
Comparable Interface
Adds sorting support for Lists that contain non-primitive types, that is, Lists of user-defined types.
Continuation Class
Use the Continuation class to make callouts asynchronously to a SOAP or REST Web service.
Cookie Class
The Cookie class lets you access cookies for your Force.com site using Apex.
Crypto Class
Provides methods for creating digests, message authentication codes, and signatures, as well as encrypting and decrypting information.
Custom Settings Methods
Custom settings are similar to custom objects and enable application developers to create custom sets of data, as well as create and associate custom data for an organization, profile, or specific user. All custom settings data is exposed in the application cache, which enables efficient access without the cost of repeated queries to the database. This data can then be used by formula fields, validation rules, flows, Apex, and the SOAP API.
Database Class
Contains methods for creating and manipulating data.
Date Class
Contains methods for the Date primitive data type.
Datetime Class
Contains methods for the Datetime primitive data type.
Decimal Class
Contains methods for the Decimal primitive data type.
Double Class
Contains methods for the Double primitive data type.
EncodingUtil Class
Use the methods in the EncodingUtil class to encode and decode URL strings, and convert strings to hexadecimal format.
Enum Methods
An enum is an abstract data type with values that each take on exactly one of a finite set of identifiers that you specify. Apex provides built-in enums, such as LoggingLevel, and you can define your own enum.
Exception Class and Built-In Exceptions
An exception denotes an error that disrupts the normal flow of code execution. You can use Apex built-in exceptions or create custom exceptions. All exceptions have common methods.
FlexQueue Class
Contains methods that reorder batch jobs in the Apex flex queue.
Http Class
Use the Http class to initiate an HTTP request and response.
InstallHandler Interface
Enables custom code to run after a managed package installation or upgrade.
Integer Class
Contains methods for the Integer primitive data type.
JSON Class
Contains methods for serializing Apex objects into JSON format and deserializing JSON content that was serialized using the serialize method in this class.
JSONGenerator Class
Contains methods used to serialize objects into JSON content using the standard JSON encoding.
PageReference Class
A PageReference is a reference to an instantiation of a page. Among other attributes, PageReferences consist of a URL and a set of query parameter names and values.
Pattern Class
Represents a compiled representation of a regular expression.
Queueable Interface
Enables the asynchronous execution of Apex jobs that can be monitored.
QueueableContext Interface
Represents the parameter type of the execute() method in a class that implements the Queueable interface and contains the job ID. This interface is implemented internally by Apex.
QuickAction Class
Use Apex to request and process actions on objects that allow custom fields, on objects that appear in a Chatter feed, or on objects that are available globally.
RemoteObjectController
Use RemoteObjectController to access the standard Visualforce Remote Objects operations in your Remote Objects override methods.
RestContext Class
Contains the RestRequest and RestResponse objects.
RestRequest Class
Represents an object used to pass data from an HTTP request to an Apex RESTful Web service method.
RestResponse Class
Represents an object used to pass data from an Apex RESTful Web service method to an HTTP response.
SandboxPostCopy Interface
To make your sandbox environment business ready, automate data manipulation or business logic tasks. Extend this interface and add methods to perform post-copy tasks, then specify the class during sandbox creation.
Schedulable Interface
The class that implements this interface can be scheduled to run at different intervals.
SchedulableContext Interface
Represents the parameter type of a method in a class that implements the Schedulable interface and contains the scheduled job ID. This interface is implemented internally by Apex.
Schema Class
Contains methods for obtaining schema describe information.
Search Class
Use the methods of the Search class to perform dynamic SOSL queries.
SelectOption Class
A SelectOption object specifies one of the possible values for a Visualforce selectCheckboxes, selectList, or selectRadio component.
Set Class
Represents a collection of unique elements with no duplicate values.
Site Class
Use the Site Class to manage your Force.com sites.
sObject Class
Contains methods for the sObject data type.
String Class
Contains methods for the String primitive data type.
StubProvider Interface (Pilot) StubProvider is a callback interface that you can use as part of the Apex stub API to implement a mocking framework. Use this interface with the Test.createStub() method to create stubbed Apex objects for testing.
System Class
Contains methods for system operations, such as writing debug messages and scheduling jobs.
Test Class
Contains methods related to Visualforce tests.
Time Class
Contains methods for the Time primitive data type.
TimeZone Class
Represents a time zone. Contains methods for creating a new time zone and obtaining time zone properties, such as the time zone ID, offset, and display name.
Trigger Class
Use the Trigger class to access run-time context information in a trigger, such as the type of trigger or the list of sObject records that the trigger operates on.
Type Class
Contains methods for getting the Apex type that corresponds to an Apex class and for instantiating new types.
URL Class
Represents a uniform resource locator (URL) and provides access to parts of the URL. Enables access to the Salesforce instance URL.
UserInfo Class
Contains methods for obtaining information about the context user.
Version Class
Use the Version methods to get the version of a managed package of a subscriber and to compare package versions.
WebServiceCallout Class
Enables making callouts to SOAP operations on an external Web service. This class is used in the Apex stub class that is auto-generated from a WSDL.
WebServiceMock Interface
Enables sending fake responses when testing Web service callouts of a class auto-generated from a WSDL.
XmlStreamReader Class
The XmlStreamReader class provides methods for forward, read-only access to XML data. You can pull data from XML or skip unwanted events. You can parse nested XML content that’s up to 50 nodes deep.
XmlStreamWriter Class
The XmlStreamWriter class provides methods for writing XML data.