Class Thread
- java.lang.Object
-
- com.microsoft.appcenter.crashes.ingestion.models.Thread
-
- All Implemented Interfaces:
com.microsoft.appcenter.ingestion.models.Model
public class Thread extends java.lang.Object implements com.microsoft.appcenter.ingestion.models.ModelThe Thread model.
-
-
Constructor Summary
Constructors Constructor Description Thread()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)java.util.List<StackFrame>getFrames()Get the frames value.longgetId()Get the id value.java.lang.StringgetName()Get the name value.inthashCode()voidread(org.json.JSONObject object)voidsetFrames(java.util.List<StackFrame> frames)Set the frames value.voidsetId(long id)Set the id value.voidsetName(java.lang.String name)Set the name value.voidwrite(org.json.JSONStringer writer)
-
-
-
Method Detail
-
getId
public long getId()
Get the id value.- Returns:
- the id value
-
setId
public void setId(long id)
Set the id value.- Parameters:
id- the id value to set
-
getName
public java.lang.String getName()
Get the name value.- Returns:
- the name value
-
setName
public void setName(java.lang.String name)
Set the name value.- Parameters:
name- the name value to set
-
getFrames
public java.util.List<StackFrame> getFrames()
Get the frames value.- Returns:
- the frames value
-
setFrames
public void setFrames(java.util.List<StackFrame> frames)
Set the frames value.- Parameters:
frames- the frames value to set
-
read
public void read(org.json.JSONObject object) throws org.json.JSONException- Specified by:
readin interfacecom.microsoft.appcenter.ingestion.models.Model- Throws:
org.json.JSONException
-
write
public void write(org.json.JSONStringer writer) throws org.json.JSONException- Specified by:
writein interfacecom.microsoft.appcenter.ingestion.models.Model- Throws:
org.json.JSONException
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-