Class StackFrame
- java.lang.Object
-
- com.microsoft.appcenter.crashes.ingestion.models.StackFrame
-
- All Implemented Interfaces:
com.microsoft.appcenter.ingestion.models.Model
public class StackFrame extends java.lang.Object implements com.microsoft.appcenter.ingestion.models.ModelThe StackFrame model.
-
-
Constructor Summary
Constructors Constructor Description StackFrame()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)java.lang.StringgetClassName()Get the className value.java.lang.StringgetFileName()Get the fileName value.java.lang.IntegergetLineNumber()Get the lineNumber value.java.lang.StringgetMethodName()Get the methodName value.inthashCode()voidread(org.json.JSONObject object)voidsetClassName(java.lang.String className)Set the className value.voidsetFileName(java.lang.String fileName)Set the fileName value.voidsetLineNumber(java.lang.Integer lineNumber)Set the lineNumber value.voidsetMethodName(java.lang.String methodName)Set the methodName value.voidwrite(org.json.JSONStringer writer)
-
-
-
Method Detail
-
getClassName
public java.lang.String getClassName()
Get the className value.- Returns:
- the className value
-
setClassName
public void setClassName(java.lang.String className)
Set the className value.- Parameters:
className- the className value to set
-
getMethodName
public java.lang.String getMethodName()
Get the methodName value.- Returns:
- the methodName value
-
setMethodName
public void setMethodName(java.lang.String methodName)
Set the methodName value.- Parameters:
methodName- the methodName value to set
-
getLineNumber
public java.lang.Integer getLineNumber()
Get the lineNumber value.- Returns:
- the lineNumber value
-
setLineNumber
public void setLineNumber(java.lang.Integer lineNumber)
Set the lineNumber value.- Parameters:
lineNumber- the lineNumber value to set
-
getFileName
public java.lang.String getFileName()
Get the fileName value.- Returns:
- the fileName value
-
setFileName
public void setFileName(java.lang.String fileName)
Set the fileName value.- Parameters:
fileName- the fileName 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
-
-