Class ContentTypeDescriptor
- java.lang.Object
-
- org.openjdk.jmc.flightrecorder.internal.parser.v0.model.ContentTypeDescriptor
-
public class ContentTypeDescriptor extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private int
contentTypeId
private ValueDescriptor[]
dataStructure
private DataType
dataType
private java.lang.String
description
private java.lang.String
name
-
Constructor Summary
Constructors Constructor Description ContentTypeDescriptor(int contentTypeId, java.lang.String name, java.lang.String description, DataType dataType, ValueDescriptor[] dataStructure)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getContentTypeId()
ValueDescriptor[]
getDataStructure()
DataType
getDataType()
java.lang.String
getDescription()
java.lang.String
getName()
-
-
-
Field Detail
-
contentTypeId
private final int contentTypeId
-
name
private final java.lang.String name
-
description
private final java.lang.String description
-
dataType
private final DataType dataType
-
dataStructure
private final ValueDescriptor[] dataStructure
-
-
Constructor Detail
-
ContentTypeDescriptor
public ContentTypeDescriptor(int contentTypeId, java.lang.String name, java.lang.String description, DataType dataType, ValueDescriptor[] dataStructure)
-
-
Method Detail
-
getContentTypeId
public int getContentTypeId()
-
getName
public java.lang.String getName()
-
getDescription
public java.lang.String getDescription()
-
getDataStructure
public ValueDescriptor[] getDataStructure()
-
getDataType
public DataType getDataType()
-
-