Namespace: OpenEdge.Core.Assertion
Class
AssertObject
Parent classes:
Inherits: Progress.Lang.Object

Copyright (c) 2014, 2016, 2020, 2022 by Progress Software Corporation. All rights reserved.
File:AssertObject
Purpose:Assertions specific to Object(s)
Author(s):psajja
Created:Tue Dec 16 12:28:50 IST 2014
Purpose:




Method Summary
Options Name Purpose
Equals (Object, Object) /** Asserts that value 'a' equals 'b'. @param Object the known value @param Object the comparison value @throws AssertionFailedError Error thrown if values differ */
HasDeterminateExtent (Object[]) /** Asserts that the Object extent is set. @param Object the value to check @throws AssertionFailedError Error thrown if Object extent is not set */
HasDeterminateExtent (Object[], character) /** Asserts that the Object extent is set. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object extent is not set */
IsAbstract (Class) /** Asserts that the given type is an abstract. @param Progress.Lang.Class the type to check @throws AssertionFailedError Error thrown if the type is not abstract*/
IsFinal (Class) /** Asserts that the given type is final. @param Progress.Lang.Class the type to check @throws AssertionFailedError Error thrown if the type is final*/
IsIndeterminateArray (Object[]) /** Asserts that the Object extent is not set. @param Object the value to check @throws AssertionFailedError Error thrown if Object extent is set */
IsIndeterminateArray (Object[], character) /** Asserts that the Object extent is not set. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object extent is set */
IsInterface (Class) /** Asserts that the given type is an interface. @param Progress.Lang.Class the type to check @throws AssertionFailedError Error thrown if the type is not an interface*/
IsNull (Object) /** Asserts that the Object is unknown. @param Object the value to check @throws AssertionFailedError Error thrown if Object is not unknown */
IsNull (Object, character) /** Asserts that the Object is unknown. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is is unknown */
IsNull (Object[]) /** Asserts that the Object array is unknown. @param Object the value to check @throws AssertionFailedError Error thrown if Object is not unknown */
IsNull (Object[], character) /** Asserts that the Object array is unknown. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is not unknown */
IsSerializable (Object) /* Asserts that the given object can be serialized. @param Obejct The object to check. */
IsType (handle, DataTypeEnum) /** Asserts that a handle is valid and of a particular datatype @param handle The handle being checked. @param DataTypeEnum The type the handle/variable being checked should be. @throws AssertionFailedError Error thrown if the handle is not valid or not of a particular datatype*/
IsType (handle, DataTypeEnum, character) /** Asserts that a handle is valid and of a particular datatype @param handle The handle being checked. @param DataTypeEnum The type the handle/variable being checked should be. @param character The name of the variable/handle. @throws AssertionFailedError Error thrown if the handle is not valid or not of a particular datatype.*/
IsType (Object, Class) /** Asserts that a object is valid and of a particular type @param Progress.Lang.Object The Object being checked. @param Progress.Lang.Class The type the being checked. @throws AssertionFailedError Error thrown if the object is not valid and not of particular type.*/
IsType (Object[], Class) /** Asserts that a object extent is valid and of a particular type for each array item @param Progress.Lang.Object The Object being checked. @param Progress.Lang.Class The type the being checked. @throws AssertionFailedError Error thrown if the object array is not valid any of the array item is not of particular type.*/
IsUnknown (Object) /** Asserts that the Object is unknown. @param Object the value to check @throws AssertionFailedError Error thrown if Object is not unknown */
IsUnknown (Object, character) /** Asserts that the Object is unknown. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is is unknown */
IsUnknown (Object[]) /** Asserts that the Object array is unknown. @param Object the value to check @throws AssertionFailedError Error thrown if Object is not unknown */
IsUnknown (Object[], character) /** Asserts that the Object array is unknown. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is not unknown */
NotAbstract (Class) /** Asserts that the given type is not an abstract. @param Progress.Lang.Class the type to check @throws AssertionFailedError Error thrown if the type is abstract*/
NotEqual (Object, Object) /** Asserts that value 'a' differs from 'b'. @param Object the known value @param Object the comparison value @throws AssertionFailedError Error thrown if values are equal */
NotFinal (Class) /** Asserts that the given type is not final. @param Progress.Lang.Class the type to check @throws AssertionFailedError Error thrown if the type is final*/
NotInterface (Class) /** Asserts that the given type is not an interface. @param Progress.Lang.Class the type to check @throws AssertionFailedError Error thrown if the type is an interface*/
NotNull (Object) /** Asserts that the Object is not unknown. @param Object the value to check @throws AssertionFailedError Error thrown if Object is unknown */
NotNull (Object, character) /** Asserts that the Object is not unknown. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is unknown */
NotNull (Object[]) /** Asserts that the Object array is not unknown. @param Object the value to check @throws AssertionFailedError Error thrown if Object is unknown */
NotNull (Object[], character) /** Asserts that the Object array is not unknown. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is unknown */
NotNullOrEmpty (ICollection) /** Asserts that the ICollection is not unknown or empty. @param ICollection the value to check @throws AssertionFailedError Error thrown if ICollection is unknown */
NotNullOrEmpty (ICollection, character) /** Asserts that the ICollection is not unknown or empty. @param ICollection the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if ICollection is unknown */
NotNullOrEmpty (ICollection[]) /** Asserts that the ICollection array is not unknown or empty. @param ICollection the value to check @throws AssertionFailedError Error thrown if ICollection is unknown */
NotNullOrEmpty (ICollection[], character) /** Asserts that the ICollection array is not unknown or empty. @param ICollection the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if ICollection is unknown */
NotNullOrEmpty (IMap) /** Asserts that the IMap is not unknown or empty. @param IMap the value to check @throws AssertionFailedError Error thrown if IMap is unknown */
NotNullOrEmpty (IMap, character) /** Asserts that the IMap is not unknown or empty. @param IMap the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if IMap is unknown */
NotNullOrEmpty (IMap[]) /** Asserts that the IMap array is not unknown or empty. @param IMap the value to check @throws AssertionFailedError Error thrown if IMap is unknown */
NotNullOrEmpty (IMap[], character) /** Asserts that the IMap array is not unknown or empty. @param IMap the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if IMap is unknown */
NotNullOrEmpty (Object) /** Asserts that the Object is not unknown or empty. @param Object the value to check @throws AssertionFailedError Error thrown if Object is unknown */
NotNullOrEmpty (Object, character) /** Asserts that the Object is not unknown or empty. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is unknown */
NotNullOrEmpty (Object[]) /** Asserts that the Object array is not unknown or empty. @param Object the value to check @throws AssertionFailedError Error thrown if Object is unknown */
NotNullOrEmpty (Object[], character) /** Asserts that the Object array is not unknown or empty. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is unknown */
NotSerializable (Object) /* Asserts that the given object cannot be serialized. @param Progress.Lang.Object The object to check. */
NotType (handle, DataTypeEnum) /** Asserts that a handle is valid and not of a particular datatype @param handle The handle being checked. @param DataTypeEnum The type the handle/variable being checked should be. @throws AssertionFailedError Error thrown if the handle is not valid or of a particular datatype*/
NotType (handle, DataTypeEnum, character) /** Asserts that a handle is valid and not of a particular datatype @param handle The handle being checked. @param DataTypeEnum The type the handle/variable being checked should be. @param character the identifying name for the AssertionFailedError. @throws AssertionFailedError Error thrown if the handle is not valid or of a particular datatype*/
NotType (Object, Class) /** Asserts that a object is valid and not of a particular type @param Progress.Lang.Object The Object being checked. @param Progress.Lang.Class The type the being checked. @throws AssertionFailedError Error thrown if the object is not valid and of particular type.*/
NotUnknown (Object) /** Asserts that the Object is not unknown. @param Object the value to check @throws AssertionFailedError Error thrown if Object is unknown */
NotUnknown (Object, character) /** Asserts that the Object is not unknown. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is unknown */
NotUnknown (Object[]) /** Asserts that the Object array is not unknown. @param Object the value to check @throws AssertionFailedError Error thrown if Object is unknown */
NotUnknown (Object[], character) /** Asserts that the Object array is not unknown. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is unknown */
NotUnknownOrEmpty (ICollection) /** Asserts that the ICollection is not unknown or empty. @param ICollection the value to check @throws AssertionFailedError Error thrown if ICollection is unknown */
NotUnknownOrEmpty (ICollection, character) /** Asserts that the ICollection is not unknown or empty. @param ICollection the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if ICollection is unknown */
NotUnknownOrEmpty (IMap) /** Asserts that the IMap is not unknown or empty. @param IMap the value to check @throws AssertionFailedError Error thrown if IMap is unknown */
NotUnknownOrEmpty (IMap, character) /** Asserts that the IMap is not unknown or empty. @param IMap the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if IMap is unknown */
NotUnknownOrEmpty (Object) /** Asserts that the Object is not unknown or empty. @param Object the value to check @throws AssertionFailedError Error thrown if Object is unknown */
NotUnknownOrEmpty (Object, character) /** Asserts that the Object is not unknown or empty. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is unknown */
NotUnknownOrEmpty (Object[]) /** Asserts that the Object array is not unknown or empty. @param Object the value to check @throws AssertionFailedError Error thrown if Object is unknown */
NotUnknownOrEmpty (Object[], character) /** Asserts that the Object array is not unknown or empty. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is unknown */


Method Detail
Top

Equals (Object, Object)

Purpose: Asserts that value 'a' equals 'b'. @param Object the known value @param Object the comparison value @throws AssertionFailedError Error thrown if values differ
Parameters:
a Progress.Lang.Object
b Progress.Lang.Object
Top

HasDeterminateExtent (Object[])

Purpose: Asserts that the Object extent is set. @param Object the value to check @throws AssertionFailedError Error thrown if Object extent is not set
Parameters:
pArgument Progress.Lang.Object
Top

HasDeterminateExtent (Object[], character)

Purpose: Asserts that the Object extent is set. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object extent is not set
Parameters:
pArgument Progress.Lang.Object
pcName CHARACTER
Top

IsAbstract (Class)

Purpose: Asserts that the given type is an abstract.
@throws AssertionFailedError Error thrown if the type is not abstract
Parameters:
pArgument Progress.Lang.Class
Top

IsFinal (Class)

Purpose: Asserts that the given type is final.
@throws AssertionFailedError Error thrown if the type is final
Parameters:
pArgument Progress.Lang.Class
Top

IsIndeterminateArray (Object[])

Purpose: Asserts that the Object extent is not set. @param Object the value to check @throws AssertionFailedError Error thrown if Object extent is set
Parameters:
pArgument Progress.Lang.Object
Top

IsIndeterminateArray (Object[], character)

Purpose: Asserts that the Object extent is not set. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object extent is set
Parameters:
pArgument Progress.Lang.Object
pcName CHARACTER
Top

IsInterface (Class)

Purpose: Asserts that the given type is an interface.
@throws AssertionFailedError Error thrown if the type is not an interface
Parameters:
pArgument Progress.Lang.Class
Top

IsNull (Object)

Purpose: Asserts that the Object is unknown. @param Object the value to check @throws AssertionFailedError Error thrown if Object is not unknown
Parameters:
pArgument Progress.Lang.Object
Top

IsNull (Object, character)

Purpose: Asserts that the Object is unknown. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is is unknown
Parameters:
pArgument Progress.Lang.Object
pcName CHARACTER
Top

IsNull (Object[])

Purpose: Asserts that the Object array is unknown. @param Object the value to check @throws AssertionFailedError Error thrown if Object is not unknown
Parameters:
pArgument Progress.Lang.Object
Top

IsNull (Object[], character)

Purpose: Asserts that the Object array is unknown. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is not unknown
Parameters:
pArgument Progress.Lang.Object
pcName CHARACTER
Top

IsSerializable (Object)

/* Asserts that the given object can be serialized.
Parameters:
pArgument Progress.Lang.Object
Top

IsType (handle, DataTypeEnum)

Purpose: Asserts that a handle is valid and of a particular datatype
@throws AssertionFailedError Error thrown if the handle is not valid or not of a particular datatype
Parameters:
pArgument HANDLE
poCheckType OpenEdge.Core.DataTypeEnum
Top

IsType (handle, DataTypeEnum, character)

Purpose: Asserts that a handle is valid and of a particular datatype
@throws AssertionFailedError Error thrown if the handle is not valid or not of a particular datatype.
Parameters:
pArgument HANDLE
poCheckType OpenEdge.Core.DataTypeEnum
pcName CHARACTER
Top

IsType (Object, Class)

Purpose: Asserts that a object is valid and of a particular type
@throws AssertionFailedError Error thrown if the object is not valid and not of particular type.
Parameters:
pArgument Progress.Lang.Object
poType Progress.Lang.Class
Top

IsType (Object[], Class)

Purpose: Asserts that a object extent is valid and of a particular type for each array item
@throws AssertionFailedError Error thrown if the object array is not valid any of the array
item is not of particular type.
Parameters:
pArgument Progress.Lang.Object
poType Progress.Lang.Class
Top

IsUnknown (Object)

Purpose: Asserts that the Object is unknown. @param Object the value to check @throws AssertionFailedError Error thrown if Object is not unknown
Parameters:
pArgument Progress.Lang.Object
Top

IsUnknown (Object, character)

Purpose: Asserts that the Object is unknown. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is is unknown
Parameters:
pArgument Progress.Lang.Object
pcName CHARACTER
Top

IsUnknown (Object[])

Purpose: Asserts that the Object array is unknown. @param Object the value to check @throws AssertionFailedError Error thrown if Object is not unknown
Parameters:
pArgument Progress.Lang.Object
Top

IsUnknown (Object[], character)

Purpose: Asserts that the Object array is unknown. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is not unknown
Parameters:
pArgument Progress.Lang.Object
pcName CHARACTER
Top

NotAbstract (Class)

Purpose: Asserts that the given type is not an abstract.
@throws AssertionFailedError Error thrown if the type is abstract
Parameters:
pArgument Progress.Lang.Class
Top

NotEqual (Object, Object)

Purpose: Asserts that value 'a' differs from 'b'. @param Object the known value @param Object the comparison value @throws AssertionFailedError Error thrown if values are equal
Parameters:
a Progress.Lang.Object
b Progress.Lang.Object
Top

NotFinal (Class)

Purpose: Asserts that the given type is not final.
@throws AssertionFailedError Error thrown if the type is final
Parameters:
pArgument Progress.Lang.Class
Top

NotInterface (Class)

Purpose: Asserts that the given type is not an interface.
@throws AssertionFailedError Error thrown if the type is an interface
Parameters:
pArgument Progress.Lang.Class
Top

NotNull (Object)

Purpose: Asserts that the Object is not unknown. @param Object the value to check @throws AssertionFailedError Error thrown if Object is unknown
Parameters:
pArgument Progress.Lang.Object
Top

NotNull (Object, character)

Purpose: Asserts that the Object is not unknown. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is unknown
Parameters:
pArgument Progress.Lang.Object
pcName CHARACTER
Top

NotNull (Object[])

Purpose: Asserts that the Object array is not unknown. @param Object the value to check @throws AssertionFailedError Error thrown if Object is unknown
Parameters:
pArgument Progress.Lang.Object
Top

NotNull (Object[], character)

Purpose: Asserts that the Object array is not unknown. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is unknown
Parameters:
pArgument Progress.Lang.Object
pcName CHARACTER
Top

NotNullOrEmpty (ICollection)

Purpose: Asserts that the ICollection is not unknown or empty. @param ICollection the value to check @throws AssertionFailedError Error thrown if ICollection is unknown
Parameters:
pArgument OpenEdge.Core.Collections.ICollection
Top

NotNullOrEmpty (ICollection, character)

Purpose: Asserts that the ICollection is not unknown or empty. @param ICollection the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if ICollection is unknown
Parameters:
pArgument OpenEdge.Core.Collections.ICollection
pcName CHARACTER
Top

NotNullOrEmpty (ICollection[])

Purpose: Asserts that the ICollection array is not unknown or empty. @param ICollection the value to check @throws AssertionFailedError Error thrown if ICollection is unknown
Parameters:
pArgument OpenEdge.Core.Collections.ICollection
Top

NotNullOrEmpty (ICollection[], character)

Purpose: Asserts that the ICollection array is not unknown or empty. @param ICollection the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if ICollection is unknown
Parameters:
pArgument OpenEdge.Core.Collections.ICollection
pcName CHARACTER
Top

NotNullOrEmpty (IMap)

Purpose: Asserts that the IMap is not unknown or empty. @param IMap the value to check @throws AssertionFailedError Error thrown if IMap is unknown
Parameters:
pArgument OpenEdge.Core.Collections.IMap
Top

NotNullOrEmpty (IMap, character)

Purpose: Asserts that the IMap is not unknown or empty. @param IMap the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if IMap is unknown
Parameters:
pArgument OpenEdge.Core.Collections.IMap
pcName CHARACTER
Top

NotNullOrEmpty (IMap[])

Purpose: Asserts that the IMap array is not unknown or empty. @param IMap the value to check @throws AssertionFailedError Error thrown if IMap is unknown
Parameters:
pArgument OpenEdge.Core.Collections.IMap
Top

NotNullOrEmpty (IMap[], character)

Purpose: Asserts that the IMap array is not unknown or empty. @param IMap the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if IMap is unknown
Parameters:
pArgument OpenEdge.Core.Collections.IMap
pcName CHARACTER
Top

NotNullOrEmpty (Object)

Purpose: Asserts that the Object is not unknown or empty. @param Object the value to check @throws AssertionFailedError Error thrown if Object is unknown
Parameters:
pArgument Progress.Lang.Object
Top

NotNullOrEmpty (Object, character)

Purpose: Asserts that the Object is not unknown or empty. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is unknown
Parameters:
pArgument Progress.Lang.Object
pcName CHARACTER
Top

NotNullOrEmpty (Object[])

Purpose: Asserts that the Object array is not unknown or empty. @param Object the value to check @throws AssertionFailedError Error thrown if Object is unknown
Parameters:
pArgument Progress.Lang.Object
Top

NotNullOrEmpty (Object[], character)

Purpose: Asserts that the Object array is not unknown or empty. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is unknown
Parameters:
pArgument Progress.Lang.Object
pcName CHARACTER
Top

NotSerializable (Object)

/* Asserts that the given object cannot be serialized.
Parameters:
pArgument Progress.Lang.Object
Top

NotType (handle, DataTypeEnum)

Purpose: Asserts that a handle is valid and not of a particular datatype
@throws AssertionFailedError Error thrown if the handle is not valid or of a particular datatype
Parameters:
pArgument HANDLE
poCheckType OpenEdge.Core.DataTypeEnum
Top

NotType (handle, DataTypeEnum, character)

Purpose: Asserts that a handle is valid and not of a particular datatype
@throws AssertionFailedError Error thrown if the handle is not valid or of a particular datatype
Parameters:
pArgument HANDLE
poCheckType OpenEdge.Core.DataTypeEnum
pcName CHARACTER
Top

NotType (Object, Class)

Purpose: Asserts that a object is valid and not of a particular type
@throws AssertionFailedError Error thrown if the object is not valid and of particular type.
Parameters:
pArgument Progress.Lang.Object
poType Progress.Lang.Class
Top

NotUnknown (Object)

Purpose: Asserts that the Object is not unknown. @param Object the value to check @throws AssertionFailedError Error thrown if Object is unknown
Parameters:
pArgument Progress.Lang.Object
Top

NotUnknown (Object, character)

Purpose: Asserts that the Object is not unknown. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is unknown
Parameters:
pArgument Progress.Lang.Object
pcName CHARACTER
Top

NotUnknown (Object[])

Purpose: Asserts that the Object array is not unknown. @param Object the value to check @throws AssertionFailedError Error thrown if Object is unknown
Parameters:
pArgument Progress.Lang.Object
Top

NotUnknown (Object[], character)

Purpose: Asserts that the Object array is not unknown. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is unknown
Parameters:
pArgument Progress.Lang.Object
pcName CHARACTER
Top

NotUnknownOrEmpty (ICollection)

Purpose: Asserts that the ICollection is not unknown or empty. @param ICollection the value to check @throws AssertionFailedError Error thrown if ICollection is unknown
Parameters:
pArgument OpenEdge.Core.Collections.ICollection
Top

NotUnknownOrEmpty (ICollection, character)

Purpose: Asserts that the ICollection is not unknown or empty. @param ICollection the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if ICollection is unknown
Parameters:
pArgument OpenEdge.Core.Collections.ICollection
pcName CHARACTER
Top

NotUnknownOrEmpty (IMap)

Purpose: Asserts that the IMap is not unknown or empty. @param IMap the value to check @throws AssertionFailedError Error thrown if IMap is unknown
Parameters:
pArgument OpenEdge.Core.Collections.IMap
Top

NotUnknownOrEmpty (IMap, character)

Purpose: Asserts that the IMap is not unknown or empty. @param IMap the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if IMap is unknown
Parameters:
pArgument OpenEdge.Core.Collections.IMap
pcName CHARACTER
Top

NotUnknownOrEmpty (Object)

Purpose: Asserts that the Object is not unknown or empty. @param Object the value to check @throws AssertionFailedError Error thrown if Object is unknown
Parameters:
pArgument Progress.Lang.Object
Top

NotUnknownOrEmpty (Object, character)

Purpose: Asserts that the Object is not unknown or empty. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is unknown
Parameters:
pArgument Progress.Lang.Object
pcName CHARACTER
Top

NotUnknownOrEmpty (Object[])

Purpose: Asserts that the Object array is not unknown or empty. @param Object the value to check @throws AssertionFailedError Error thrown if Object is unknown
Parameters:
pArgument Progress.Lang.Object
Top

NotUnknownOrEmpty (Object[], character)

Purpose: Asserts that the Object array is not unknown or empty. @param Object the value to check @param character the identifying name for the AssertionFailedError @throws AssertionFailedError Error thrown if Object is unknown
Parameters:
pArgument Progress.Lang.Object
pcName CHARACTER


Copyright © 2022 Progress Software Corporation. All rights Reserved.

Progress® OpenEdge® Release 12.6.0