Class ObjectDescriptor
- java.lang.Object
-
- com._1c.g5.v8.dt.supply.conversion.ObjectDescriptor
-
public class ObjectDescriptor extends Object
The single EDT object descriptor
-
-
Constructor Summary
Constructors Constructor Description ObjectDescriptor(ConfigurationObjectType objectType, String objectName, boolean topObject, boolean externalProperty)
Constructs an object descriptor instance
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<String>
getObjectName()
Gets the object nameConfigurationObjectType
getObjectType()
Gets the object typeboolean
isExternalProperty()
Checks if the object is an external propertyboolean
isTopObject()
Check if the object is a top object
-
-
-
Constructor Detail
-
ObjectDescriptor
public ObjectDescriptor(ConfigurationObjectType objectType, String objectName, boolean topObject, boolean externalProperty)
Constructs an object descriptor instance- Parameters:
objectType
- The object type. May not benull
objectName
- The name of the object. May benull
topObject
- The top object flagexternalProperty
- The external property flag
-
-
Method Detail
-
getObjectName
public Optional<String> getObjectName()
Gets the object name- Returns:
- The name of the object. May not be
null
-
getObjectType
public ConfigurationObjectType getObjectType()
Gets the object type- Returns:
- The object type. May not be
null
-
isExternalProperty
public boolean isExternalProperty()
Checks if the object is an external property- Returns:
- True if the object is an external property
-
isTopObject
public boolean isTopObject()
Check if the object is a top object- Returns:
- True if the object is a top object
-
-