This might seem like a stupid question at first, just do field.set(obj, null). But if the field is not an object, but a primitive, this will return an error. What I want is that it "resets" the value, no matter if it is an object, or a primitive (e.g. String -> null, int -> 0, boolean -> false). I have already tried doing field.getType().isPrimitive() ? 0 : null, hoping that the 0 would cast to short, byte, boolean, etc. automatically, but that did not work either. My current solution, a switch statement using field.getType(), is absolute garbage. Is there a cleaner, one-line solution to this?
How do I set a Field to null using reflection in java?
654 Views Asked by weird guy At
0
There are 0 best solutions below
Related Questions in JAVA
- I need the BIRT.war that is compatible with Java 17 and Tomcat 10
- Creating global Class holder
- No method found for class java.lang.String in Kafka
- Issue edit a jtable with a pictures
- getting error when trying to launch kotlin jar file that use supabase "java.lang.NoClassDefFoundError"
- Does the && (logical AND) operator have a higher precedence than || (logical OR) operator in Java?
- Mixed color rendering in a JTable
- HTTPS configuration in Spring Boot, server returning timeout
- How to use Layout to create textfields which dont increase in size?
- Function for making the code wait in javafx
- How to create beans of the same class for multiple template parameters in Spring
- How could you print a specific String from an array with the values of an array from a double array on the same line, using iteration to print all?
- org.telegram.telegrambots.meta.exceptions.TelegramApiException: Bot token and username can't be empty
- Accessing Secret Variables in Classic Pipelines through Java app in Azure DevOps
- Postgres && statement Error in Mybatis Mapper?
Related Questions in PRIMITIVE-TYPES
- How to highlight input text when the edit panel opens in Lightning Datatable?
- How to detect auto-boxing and auto-unboxing in Kotlin?
- NULL as an eighth 'primitive' data type
- What are rules in casting primitive types in expressions in Java?
- PHP Dependency Injection resolving class with primitive dependencies
- Given an unknown primitive type array in the form of an object, convert it to double array C#
- How to maintain a consistent encryption key in MongoDB client-side field level encryption?
- Does C have a concept of primitive types and if so what are they?
- How to create a Double value from a Float value in Swift
- Is there a way to find all the attributes of a primitive in JavaScript?
- why primitive types (eg. number) are assignable to object types(e.g. Number) but not vice versa?
- Does the `===` operator in Javascript have separate definitions for primitives vs non-primitives?
- Javascript: Why don't array methods return a new array?
- Data Type for money in Java
- Adding Byte and Short
Related Questions in REFLECT
- How to get a single struct with a struct array in reflect
- Can I copy the value of pointer of interface with tags in golang with unknown type
- GO: how can i use go reflect to set the value of pointer of struct
- Method Reflect - When have class,method name and args;how to reflect a method
- how to use reflect know the slice data type?
- When type is []byte, it fails at case statement in golang
- In this case why do i need to convert the value type to interface{} when the receiving parameter of the function is already interface?
- How to assign a value to another of the same type when both are passed as interface{}?
- Reflect Filter-less CS50
- Set reflect.Value to slice in Go
- Creating an object with methods using reflect results in segmentation violation
- How do I merge two images vertically in Python?
- What are the prerequisites of sqlalchemy reflection?
- Wrap a reflect.Value with pointer which points to the same element
- Is there a way to reflect all variables of one package in go?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?