fferpcore.OptionalValueglobal with sharing class OptionalValue A holder for a value, so we can tell the difference between null and missing. Methods that return an fferpcore.OptionalValue return null to signify "missing" or "unknown". They return new OptionalValue(null) to signify an explicit null. Methods
OptionalValueglobal OptionalValue(Object value) Construct an fferpcore.OptionalValue with the given value. Input Parameters
hasNonNullValueglobal Boolean hasNonNullValue() Return ValueTrue of the Optional has a non-null value. equalsglobal Boolean equals(Object other) Two OptionalValues are equal if their contents are equal. * Input Parameters
Return ValueTrue of they are equal. |