Package org.eclipse.lsp4j
Class DeleteFileOptions
- java.lang.Object
-
- org.eclipse.lsp4j.DeleteFileOptions
-
public class DeleteFileOptions extends java.lang.ObjectDelete file optionsSince 3.13.0
-
-
Constructor Summary
Constructors Constructor Description DeleteFileOptions()DeleteFileOptions(java.lang.Boolean recursive, java.lang.Boolean ignoreIfNotExists)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.BooleangetIgnoreIfNotExists()Ignore the operation if the file doesn't exist.java.lang.BooleangetRecursive()Delete the content recursively if a folder is denoted.inthashCode()voidsetIgnoreIfNotExists(java.lang.Boolean ignoreIfNotExists)Ignore the operation if the file doesn't exist.voidsetRecursive(java.lang.Boolean recursive)Delete the content recursively if a folder is denoted.java.lang.StringtoString()
-
-
-
Method Detail
-
getRecursive
public java.lang.Boolean getRecursive()
Delete the content recursively if a folder is denoted.
-
setRecursive
public void setRecursive(java.lang.Boolean recursive)
Delete the content recursively if a folder is denoted.
-
getIgnoreIfNotExists
public java.lang.Boolean getIgnoreIfNotExists()
Ignore the operation if the file doesn't exist.
-
setIgnoreIfNotExists
public void setIgnoreIfNotExists(java.lang.Boolean ignoreIfNotExists)
Ignore the operation if the file doesn't exist.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-