CompositeEntityModel Class

  • java.lang.Object
    • com.microsoft.azure.cognitiveservices.language.luis.runtime.models.CompositeEntityModel

public class CompositeEntityModel

LUIS Composite Entity.

Method Summary

Modifier and Type Method and Description
List<CompositeChildModel> children()

Get the children value.

String parentType()

Get the parentType value.

String value()

Get the value value.

CompositeEntityModel withChildren(List<CompositeChildModel> children)

Set the children value.

CompositeEntityModel withParentType(String parentType)

Set the parentType value.

CompositeEntityModel withValue(String value)

Set the value value.

Method Details

children

public List children()

Get the children value.

Returns:

the children value

parentType

public String parentType()

Get the parentType value.

Returns:

the parentType value

value

public String value()

Get the value value.

Returns:

the value value

withChildren

public CompositeEntityModel withChildren(List children)

Set the children value.

Parameters:

children - the children value to set

Returns:

the CompositeEntityModel object itself.

withParentType

public CompositeEntityModel withParentType(String parentType)

Set the parentType value.

Parameters:

parentType - the parentType value to set

Returns:

the CompositeEntityModel object itself.

withValue

public CompositeEntityModel withValue(String value)

Set the value value.

Parameters:

value - the value value to set

Returns:

the CompositeEntityModel object itself.

Applies to